Last active
January 31, 2025 23:03
-
-
Save parallelepiped/7045923 to your computer and use it in GitHub Desktop.
How to unsubscribe from all meetup emails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_.each($(".editInPlace"), function(g){g.click()}) | |
// wait a second for ajax to finish | |
_.each($("input[type=checkbox]:checked"), function(c) {c.click()}) | |
_.each($("input[type=radio][value=1]"), function(e) {e.click()}) | |
_.each($("input[type=radio][name=mailing_list_status][value=0]"), function(e) {e.click()}) | |
_.each($("input[type=radio][name=evRemind][value=1]"), function(e) {e.click()}) | |
_.each($("form[method=POST]"), function(f) {$.post(f.action, $(f).serialize(), function(e) {console.log("Unsubscribed from " + f.action)})}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
omg this is amazing, thanks