Created
November 21, 2012 08:02
-
-
Save dhigginbotham/4123715 to your computer and use it in GitHub Desktop.
New Turntable.fm Autobop Script
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 count = 0; | |
!function () { | |
ab_functs(count); | |
ttout = window.setTimeout(ab_functs, 5000 * 60 ); | |
}(); | |
function ab_functs(count) { | |
count++; | |
console.log('I\'ve bopped for you now ' + count + ' times!'); | |
$(window).focus(); | |
$("div#awesome-button").trigger({ | |
type: "click", | |
pageX: 1, | |
pageY: 1 | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment