Jquery all Checkbox

2015. 3. 24. 16:24IT/Jquery Plugin/Tip

$(document).ready(function(){
$("#chkall2").click(function(){
if($(this).is(":checked")){
$(".chkchk").attr("checked",true);
}else{
$(".chkchk").attr("checked",false);
}
});

});