Skip to content

Instantly share code, notes, and snippets.

@arieljatib
Last active October 12, 2022 13:06
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 arieljatib/997292dd4e8a9f8da53d3bb465bee571 to your computer and use it in GitHub Desktop.
Save arieljatib/997292dd4e8a9f8da53d3bb465bee571 to your computer and use it in GitHub Desktop.
// export attendee list is broken
// scrape meetup.com/group-name/events/[id]/attendees for names.
// run from `console` in web inspector
// make sure pop-up window is allowed / enabled
var annotations = document.querySelector('.attendees-list');
var notesParagraphs = Array.from(annotations.querySelectorAll('._memberItem-module_name__BSx8i, .text--bold text--ellipsisOneLine'));
var notesText = notesParagraphs.map((paragraph) => `${paragraph.innerHTML}`).join('');
var win = window.open("", "Title", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=600.text--bold text--ellipsisOneLine00,top="+(screen.height-400)+",left="+(screen.width-840));
win.document.body.innerHTML = `<div>${notesText}</div>`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment