Skip to content

Instantly share code, notes, and snippets.

@keiya
Created December 28, 2013 22:53
Show Gist options
  • Save keiya/8165245 to your computer and use it in GitHub Desktop.
Save keiya/8165245 to your computer and use it in GitHub Desktop.
Grooveshark "are you there?" canceller : automatically click the resume button!
var timer = setInterval(function(){
var $btn = $(".btn.btn-large.submit.btn-primary");
if ($btn.length > 0) {
$btn.click();
console.debug("Button clicked");
}
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment