jquery if all checkboxes are checked code example
Example 1: How to check whether a checkbox is checked in jQuery?
if(document.getElementById('on_or_off_checkbox').checked) {
}
if($('#on_or_off_checkbox').is(':checked')){
}
Example 2: jquery check if checkbox is checked
if($('#on_or_off_checkbox').is(':checked')){
}
Example 3: jquery get all checkbox checked
$('.theClass:checkbox:checked')
Example 4: jquery check if all checkbox is not checked
$('#checkAll').click(function () {
$('input:checkbox').prop('checked', this.checked);
});