Hey Hacker News,<p>I got tired of receiving spam from meetup.com group members and groups. This has probably been done before, but here's a simple bookmarklet I just wrote to unsubscribe from a specific meetup if you are on their email settings page:<p><pre><code> javascript:$('.D_form').find('input[type=checkbox]').attr('checked', false); $('#rsvpConf').attr('checked', true); $('input[type=radio]').each(function(i) { if (i % 3 === 2) $(this).prop('checked', true); }); $('input.D_submit[type=submit]').trigger('click');
</code></pre>
Formatted code:<p><pre><code> $('.D_form').find('input[type=checkbox]').attr('checked', false);
$('#rsvpConf').attr('checked', true);
$('input[type=radio]').each(function(i) {
if (i % 3 === 2) $(this).prop('checked', true);
});
$('input.D_submit[type=submit]').trigger('click');
</code></pre>
What would be better is if it navigated to each meetup itself, but I hope it's still useful.