Skip to content

Instantly share code, notes, and snippets.

@DarrenCattle
Created August 16, 2014 14:21
Show Gist options
  • Save DarrenCattle/168ef3139f5ccb2b6e50 to your computer and use it in GitHub Desktop.
Save DarrenCattle/168ef3139f5ccb2b6e50 to your computer and use it in GitHub Desktop.
var a = 0;
var d = document.getElementById("placebut"),
interval = setInterval(function(){
a++;
console.log("Clicking:", a);
d.click();
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment