Skip to content

Instantly share code, notes, and snippets.

@tanakahisateru
Created December 3, 2010 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanakahisateru/727103 to your computer and use it in GitHub Desktop.
Save tanakahisateru/727103 to your computer and use it in GitHub Desktop.
javascript:(function() {
var count=0;
var id=setInterval(function() {
var evt=document.createEvent("MouseEvents");
evt.initMouseEvent("click",true,true,window,0,0,0,0,0,false,false,false,false,0,null);
document.getElementById("more").dispatchEvent(evt);
if(++count > 300) {
alert('end');
clearInterval(id);
}
},2500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment