How download menu values of online dynamic website

I would like to download values of menue. Code editor like sublime text gives values mixed with code but I want just copy paste values. Any idea ?

So you just want to extract the input values from a live site? Enter this into the console:

var inputs = document.getElementsByTagName('input');
for (var i = 0; i < inputs.length; i++) {
    console.log(inputs[i].value);
}

This will output all current values to the console so that you can copy/paste them.

Can you give more detail of what you are trying to achieve and what you have tried so far? It is difficult to visualise on so little information…

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.