Created
September 25, 2011 05:09
-
-
Save georgedorn/1240264 to your computer and use it in GitHub Desktop.
Fast grab of DJ slot on Turntable.fm
This file contains 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
var is_dj = false; | |
var timeout_handler = 0; | |
function get_slot(){ | |
if(is_dj){ | |
if (timeout_handler){ | |
clearInterval(timeout_handler); | |
} | |
return; | |
} | |
$('.invite_dj').prev('a').click(); | |
} | |
setInterval(get_slot, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment