Created
October 17, 2019 02:11
-
-
Save mrbusche/ed152c93f4f5298259701145bc6a4b57 to your computer and use it in GitHub Desktop.
jQuery check/uncheck all
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#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