Advertisement
Guest User

etf2l

a guest
Jun 30th, 2012
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Votes No for all of the options in Crasp's poll
  2. // Paste it into your browser's javascript console when you're on the vote page
  3. for(var i=0; i<230; i++)
  4. {
  5.     var radio = document.getElementById('group_'+i+'_2');
  6.     if(radio!=null)
  7.         radio.checked = true;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement