Skip to content

Instantly share code, notes, and snippets.

@dongkwan-kim
Created May 8, 2017 13:32
Show Gist options
  • Save dongkwan-kim/33a3ca75450a127580cb925b291f0e72 to your computer and use it in GitHub Desktop.
Save dongkwan-kim/33a3ca75450a127580cb925b291f0e72 to your computer and use it in GitHub Desktop.
Move vote in twitter voting
function moveVote(idx)
{
var voted = 'url(//ton.twimg.com/tfw/assets/checkmark_circle_v1_06f15f494d711c69b89c759b68d1fcbbecdca631.svg)';
for(var i = 1; i <= 4; i += 1)
$('.PollXChoice-choice--selected[data-poll-index="' + i + '"]').style.backgroundImage = "None";
$('.PollXChoice-choice--selected[data-poll-index="' + idx + '"]').style.backgroundImage = voted;
}
moveVote(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment