Skip to content

Instantly share code, notes, and snippets.

@Asbra
Created June 4, 2016 12:31
Show Gist options
  • Save Asbra/555f15374ac06aa2c976ab3796b99eca to your computer and use it in GitHub Desktop.
Save Asbra/555f15374ac06aa2c976ab3796b99eca to your computer and use it in GitHub Desktop.
Plug.dj Auto-Woot (10 seconds interval)
wootIt = function() {
if ($('#woot').hasClass('selected') === false && $('#meh').hasClass('selected') === false) {
$('#woot').click();
}
};
setInterval(wootIt, 10000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment