Created
October 24, 2016 11:03
-
-
Save tygas/2c767d29c8c931fafe055994239d6516 to your computer and use it in GitHub Desktop.
select all checboxed
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
$('input[type=checkbox]').each(function(checkbox){ | |
$(checkbox).prop('checked', true); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment