Skip to content

Instantly share code, notes, and snippets.

@OleMchls
Created May 15, 2013 09:26
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 OleMchls/5582730 to your computer and use it in GitHub Desktop.
Save OleMchls/5582730 to your computer and use it in GitHub Desktop.
Get meetup attendeelist from meetup.com
var result = [];
var members = $('.event-attendee-section h5.member-name a').get();
for (var i in members) {
result.push($(members[i]).text());
};
console.log(result.join("\n"));
alert(result.join("\n"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment