Skip to content

Instantly share code, notes, and snippets.

@bqm
Last active April 6, 2023 15:40
Show Gist options
  • Save bqm/9957316 to your computer and use it in GitHub Desktop.
Save bqm/9957316 to your computer and use it in GitHub Desktop.
Find your position in a meetup.com waitlist
// Open the developer console of your favorite browser
// on the page of your favorite meetup where you're on the wailist (grrr)
// and paste this by putting your name
// This will actually compute the position in the waitlist div which seems to correspond to the waitlist position
var findPosition = function(username) { return $("#rsvp-list-waitlist h5").map(function(i, el) {return {"pos": i, "name": $(el).text()}}).filter(function(i, el) {return el["name"].indexOf(username) >= 0;})}
findPosition("my displayed name") // where my displayed name is the name that is displayed for you on the meetup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment