Skip to content

Instantly share code, notes, and snippets.

@arkon108
Created January 6, 2016 02:57
Show Gist options
  • Save arkon108/812869c05bd8b56a908f to your computer and use it in GitHub Desktop.
Save arkon108/812869c05bd8b56a908f to your computer and use it in GitHub Desktop.
var links = $('a[onclick="return fixone(this)"]');
function makeitso(a,i) {
if (i < a.length) {
setTimeout(function() {
console.log("Clicking next link");
a[i].click();
makeitso(a, i+1);
}, 1000*15);
} else {
console.log('DONE!!');
}
}
makeitso(links, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment