Skip to content

Instantly share code, notes, and snippets.

@dkordik
Created June 17, 2009 15:42
Show Gist options
  • Save dkordik/131301 to your computer and use it in GitHub Desktop.
Save dkordik/131301 to your computer and use it in GitHub Desktop.
javascript:document.getElementById('ctl00_contentBody_btnVote').addEventListener('click', function(e) { document.cookie = 'Lots2Give_Votes=; expires=Thu, 01-Jan-70 00:00:01 GMT;'; if(window.voteCount==undefined){ window.voteCount=1; document.getElementById('info').getElementsByTagName("p")[2].getElementsByTagName("span")[0].innerHTML="Vote <i>unlimited</i> times per day!<br><span id='superCount' style='font-weight: bold; font-size: 12px; color:blue;'>You have voted 1 time.</span>"; } else { window.voteCount++;} document.getElementById('ctl00_contentBody_lblVoteMessage').innerHTML="Voting...";document.getElementById('superCount').innerHTML="You have voted "+window.voteCount+" times. Nice!";}, false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment