Skip to content

Instantly share code, notes, and snippets.

@cgrusden
Created January 12, 2012 21:22
Show Gist options
  • Save cgrusden/1603210 to your computer and use it in GitHub Desktop.
Save cgrusden/1603210 to your computer and use it in GitHub Desktop.
Auto-select people in Causes.org application
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
@conraddecker
Copy link

Add this into the location(url) of a bookmark

javascript: (function () { $(".list li .checkbox").each(function() { $(this).click(); }) })();

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