Created
January 23, 2012 02:20
-
-
Save e2kaneko/1660075 to your computer and use it in GitHub Desktop.
jQueryすべてチェック/すべて解除
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
| $(function(){ | |
| $("#check-all").click(function(){ | |
| $(".deleteCheckbox").attr('checked', true); | |
| return false; | |
| }); | |
| $("#uncheck-all").click(function(){ | |
| $(".deleteCheckbox").attr('checked', false); | |
| return false; | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment