Skip to content

Instantly share code, notes, and snippets.

@shime
Last active October 1, 2015 22:15
Show Gist options
  • Save shime/49d82eb5cca72719c2f9 to your computer and use it in GitHub Desktop.
Save shime/49d82eb5cca72719c2f9 to your computer and use it in GitHub Desktop.
pick a random meetup attendee
// Paste this into your browser console to pick a random attendee
// from the list of users in the "Going" section of your
// event at meetup.com
//
// Skips the organizer (first in the list).
$('#rsvp-list li').eq(Math.floor(Math.random()*($('#rsvp-list li').length - 1)) + 1).find('a').text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment