Skip to content

Instantly share code, notes, and snippets.

@csndra0504
Created December 12, 2012 19:44
Show Gist options
  • Save csndra0504/4270919 to your computer and use it in GitHub Desktop.
Save csndra0504/4270919 to your computer and use it in GitHub Desktop.
Check all checkboxes
var tog = false; // or true if they are checked on load
$('a').click(function() {
$("input[type=checkbox]").attr("checked",!tog);
tog = !tog;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment