Skip to content

Instantly share code, notes, and snippets.

@danielbehrendt
Created March 19, 2013 13:34
Show Gist options
  • Save danielbehrendt/5196130 to your computer and use it in GitHub Desktop.
Save danielbehrendt/5196130 to your computer and use it in GitHub Desktop.
$("#check-all").click(function() {
$(':checkbox').each(function() {
this.checked = !this.checked;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment