Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Easily say "Good to see you" to all attendees after a meetup
  2.  
  3. // Go to the Event page, and make sure you've loaded all the attendees
  4. // by scrolling down and loading them all.
  5.  
  6. // Then paste this into your browser's console
  7.  
  8. var elems = document.getElementsByClassName("D_submit");
  9.  
  10. for(var i=0; i<elems.length;i++) {
  11. if( elems[i].tagName.toLowerCase() === "a" )
  12. elems[i].click();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement