Created
February 8, 2020 16:13
-
-
Save jerry42/b639773c86e5c3fd867a71c3cd5943c5 to your computer and use it in GitHub Desktop.
Check/Uncheck list checkbox
This file contains 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
$('.classCheckbox').each(function() { | |
if ($(this).is(':checked') && $('#master_checkbox').is(':checked') == false) | |
$(this).trigger('click'); | |
else if (!$(this).is(':checked') && $('#master_checkbox').is(':checked') == true) | |
$(this).trigger('click'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment