Skip to content

Instantly share code, notes, and snippets.

@drillbits
Created August 3, 2012 06:25
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 drillbits/3245116 to your computer and use it in GitHub Desktop.
Save drillbits/3245116 to your computer and use it in GitHub Desktop.
setInterval(function(){
var area = document.getElementById('contentArea');
var links = area.getElementsByClassName('uiIconText');
for (var i = 0;i < links.length; i++) {
links[i].click();
}
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment