Tag: corat-coret

corat-coret04

$(document).ready(function(){
     $("#cekAll").click(function(){
       if($(this).is(":checked")){
         $(".cb").attr("checked","checked");
       }else{
         $(".cb").removeAttr("checked");
       }
     });
});