TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Bookmarklet to unsubscribe from Meetup emails

1 pointsby ajayjainover 12 years ago
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.

no comments

no comments