Skip to content

Instantly share code, notes, and snippets.

@makefu
Last active December 16, 2015 03:18
Show Gist options
  • Save makefu/5368517 to your computer and use it in GitHub Desktop.
Save makefu/5368517 to your computer and use it in GitHub Desktop.
marvel #free promo comic link clicker
var comics = document.getElementsByClassName("addComicLink");
for (var i = 0; i < comics.length; i+=1) {
ev = document.createEvent("MouseEvent");
ev.initMouseEvent("click",true,false,window,0,0,0,0,0,false,false,false,false,2,null);
if (comics[i].href.match( /buy/ ) ){
comics[i].dispatchEvent(ev);};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment