Created
January 12, 2012 21:22
-
-
Save cgrusden/1603210 to your computer and use it in GitHub Desktop.
Auto-select people in Causes.org application
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
Make this a bookmarklet: | |
$(".list li .checkbox").each(function() { $(this).click(); }) # but only select the first 25, since thats the max (for now) | |
Use this page as your test: | |
http://www.causes.com/causes/93997-animal-cruelty-is-not-art/welcome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this into the location(url) of a bookmark
javascript: (function () {$(".list li .checkbox").each(function() { $ (this).click(); }) })();