Skip to content

Instantly share code, notes, and snippets.

@freakynit
Created July 15, 2015 14:59
Show Gist options
  • Save freakynit/03b8dee466b628e85d4f to your computer and use it in GitHub Desktop.
Save freakynit/03b8dee466b628e85d4f to your computer and use it in GitHub Desktop.
var eles = document.getElementsByClassName("detail");
function doNext(curIndex){
var ab= eles[curIndex].getElementsByTagName('a');
if(ab[0].innerHTML.indexOf("Free") > -1) ab[0].click();
setTimeout(function(){
if(curIndex < (eles.length - 1)) {
doNext(curIndex + 1);
}
}, 500);
}
doNext(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment