Skip to content

Instantly share code, notes, and snippets.

@mrbusche
Created October 17, 2019 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrbusche/ed152c93f4f5298259701145bc6a4b57 to your computer and use it in GitHub Desktop.
Save mrbusche/ed152c93f4f5298259701145bc6a4b57 to your computer and use it in GitHub Desktop.
jQuery check/uncheck all
$('#checkAll').click(function() {
$('input:checkbox[id^="check_"]').prop('checked', this.checked);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment