Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created March 24, 2014 07:17
Show Gist options
  • Save z-------------/9735566 to your computer and use it in GitHub Desktop.
Save z-------------/9735566 to your computer and use it in GitHub Desktop.
var autoClick = function(node,delay){
setInterval(function(){
node.click()
},delay)
}
// autoClick(document.body,1)
// delay is in milliseconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment