How to show meetup.com listings that have more than a certain number of people or a high attendee count.

Jump to: navigation, search

To show meetups (meetup.com) in your area with more than a certain number of attendees, use the Firefox web browser and follow these steps. 1. Clear the meetup.com search bar (it will say All Meetups in ghosted text). 2. Click Calendar. This should list all meetups nearby you. 3. Hit F12 to open Firefox developer tools. 4. In the console cut and paste the following line of code. Modify the value of minimumAttendeeCount. var minimumAttendeeCount = 25;$('.event-listing').each(function(){var attendeeCount = parseInt($(this).find('.attendee-count').html()); if(attendeeCount < minimumAttendeeCount) {$(this).hide();}});

See also

Personal tools
Namespaces
Variants
Views
Actions
Navigation