Skip to content

Instantly share code, notes, and snippets.

@ArmedGuy
Created April 22, 2013 20:53
Show Gist options
  • Save ArmedGuy/5438437 to your computer and use it in GitHub Desktop.
Save ArmedGuy/5438437 to your computer and use it in GitHub Desktop.
Poke-delen av koden
setInterval(function() {
a=document.getElementsByTagName("a");
for(i in a){if(a[i].className == "uiIconText")
{
if(a[i].getAttribute("ajaxify").indexOf("pokeback=1") !== -1) {
a[i].click();
}
}
}
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment