Skip to content

Instantly share code, notes, and snippets.

@TerryMooreII
Last active December 23, 2015 07:39
Show Gist options
  • Save TerryMooreII/6602362 to your computer and use it in GitHub Desktop.
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.
(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