Skip to content

Instantly share code, notes, and snippets.

@daryltucker
Created April 28, 2014 21:19
Show Gist options
  • Save daryltucker/11384365 to your computer and use it in GitHub Desktop.
Save daryltucker/11384365 to your computer and use it in GitHub Desktop.
setInterval(function(){
var x = document.getElementsByTagName('a');
console.log(x);
for ( var i=0; i<x.length; i++) {
x[i].click();
};
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment