Skip to content

Instantly share code, notes, and snippets.

@devopsmariocom
Created January 13, 2016 12:24
Show Gist options
  • Save devopsmariocom/a81628b8b767bcd32a53 to your computer and use it in GitHub Desktop.
Save devopsmariocom/a81628b8b767bcd32a53 to your computer and use it in GitHub Desktop.
function pickWinner() {
const tweets = document.querySelectorAll('.tweet-text strong')
const winnerHash = tweets[Math.floor(Math.random() * tweets.length)];
alert( '@' + winnerHash.parentElement.parentElement.parentElement.parentElement.querySelector('.username>b').innerText );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment