Skip to content

Instantly share code, notes, and snippets.

@jteneycke
Created August 6, 2013 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jteneycke/6167800 to your computer and use it in GitHub Desktop.
Save jteneycke/6167800 to your computer and use it in GitHub Desktop.
bookmarket to uncheck all of the boxes on the email page of each group. Made with http://chriszarate.github.io/bookmarkleter/
javascript:(function(){$('input[type=checkbox]').prop('checked',false);$('input[type=radio][value=1]').prop('checked',true);})();
$('input[type=checkbox]').prop('checked', false);
$('input[type=radio][value=1]').prop('checked', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment