Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created January 23, 2012 02:20
Show Gist options
  • Save e2kaneko/1660075 to your computer and use it in GitHub Desktop.
Save e2kaneko/1660075 to your computer and use it in GitHub Desktop.
jQueryすべてチェック/すべて解除
$(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