Skip to content

Instantly share code, notes, and snippets.

@robbiethegeek
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robbiethegeek/63b40a626a1aa04846d1 to your computer and use it in GitHub Desktop.
Save robbiethegeek/63b40a626a1aa04846d1 to your computer and use it in GitHub Desktop.
get count of you on waiting list at Meetup.com
var name = 'Robert Holmes'
var message = 'Woohoo, not on the waitlist';
$('#rsvp-list-waitlist li').each(function(index){
if ($('.member-name', this).text(),indexOf(name) !== 1){
message = "Hi there "+ name + " you are number: " + index +"on the waiting list";
});
alert(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment