Skip to content

Instantly share code, notes, and snippets.

@gregersrygg
Created October 16, 2012 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gregersrygg/3899381 to your computer and use it in GitHub Desktop.
Save gregersrygg/3899381 to your computer and use it in GitHub Desktop.
One-liner to random pick a meetup.com attendee from the RSVP list
// copy-paste into console
alert(Array.prototype.slice.call(document.querySelectorAll("#rsvp-list h5 a"),0).sort(function () { return Math.random() -0.5; })[0].innerText);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment