I try to skip all the links on the site and autocline some links in order to vote for what I still have:
function x(){
for(var e in document.getElementsByTagName("a")){
alert(e.getAttribute("href"))
e.click;
}
}
This is currently not working. I think this may be due to something as simple as /; key, I'm an absolute newbie to javascript, so please bear with me. I assume that you get a drift of what I want to do, I performed this task in another language, but still have not gotten the right to vote, I believe that this can be connected with the site using jquery? My question is: how can I get this simple script to start and 2) Is there any other click method for jQuery that I can use instead of what I have there? 3) How to check 6 specific URLs and click only these. I also need to execute this from a browser using javascript: xxx_code_here
Any ideas?
thank
source
share