Kotak centang pada klik jQuery pilih semua
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
Ill Iguana
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
var values=[];
$('input[name="your-checkbox-name[]"]:checked').each(function () {
values[values.length] = (this.checked ? $(this).val() : "");
});
var selected = []; // New array
$("#inputID input[type=checkbox]:checked").each(function () {
selected.push(this.value);
});
$('input:checkbox').prop('checked', true);
$('#selectChb').click(function(){
$(':checkbox').prop("checked", true);
});
//html
<input type="checkbox" onclick="CheckAll(this)" id="checkboxAll" title="Select All" />
//jquery
function CheckAll(elem) {
$('[name="checkbox"]').prop("checked", $(elem).prop('checked'));
}