Last active
December 23, 2015 07:39
-
-
Save TerryMooreII/6602362 to your computer and use it in GitHub Desktop.
Um, my mom requested this. A script to vote for my cousin so that he can player of the week. I really don't feel so bad, it looks like two other contestants are doing the same.
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
(function(){ | |
var count = 0; | |
var totalVotes = 10; | |
var interval = 1000; //in milliseconds 1000 = 1 sec | |
var vote = setInterval(function(){ | |
$('input[value="3997"]').prop('checked', true); | |
$('form.poll').submit(); | |
console.log("Vote " + count + " Cast") | |
if (++count === totalVotes) clearInterval(vote); | |
}, interval); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment