Skip to content

Instantly share code, notes, and snippets.

@macabreb0b
Last active October 24, 2022 21:18
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macabreb0b/c098cca52b42f4335451 to your computer and use it in GitHub Desktop.
Save macabreb0b/c098cca52b42f4335451 to your computer and use it in GitHub Desktop.
Unsubscribe from all group notifications on Meetup.com
// Tired of getting Meetup.com notifications? Me too.
// 1. Navigate to: http://www.meetup.com/account/comm/ (you must be logged in!)
// 2. Open your browser's console, and paste in the script below:
$('.commSettings').each(function(idx, item) {var $item = $(item);var boardId = $item.attr("id").split('_')[1];var url = $item.children('form').attr('action');var params = {evRemind:1,mailing_list_status:0, submitButton:'Save Settings', submit:'submit'};params['board_' + boardId] = boardId;$.ajax({data: params, url: url, type: 'post'});});$('.generalEmailSettings').find('input[type="checkbox"]').prop('checked', false);$('.generalEmailSettings').find('input[type="submit"]').click();
@goshlanguage
Copy link

Brilliant, thank you!

@dam1
Copy link

dam1 commented Aug 20, 2014

Thanks you ! Awesome

@townie
Copy link

townie commented Sep 8, 2014

Great worked like a charm

@MisterReally
Copy link

No longer works - tried on latest Chrome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment