Created
June 4, 2016 12:31
-
-
Save Asbra/555f15374ac06aa2c976ab3796b99eca to your computer and use it in GitHub Desktop.
Plug.dj Auto-Woot (10 seconds interval)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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