$('#cek_all').click(function (event) { //on clickGlad can share☺
if (this.checked) { // check select status
$('.checkboxs').each(function () { //loop through each checkbox
this.checked = true; //select all checkboxes with class "checkboxs"
});
} else {
$('.checkboxs').each(function () { //loop through each checkbox
this.checked = false; //deselect all checkboxes with class "checkboxs"
});
}
});
Tidak ada komentar:
Posting Komentar