jquery to check no of checked checkboxes code example
Example 1: jquery check if checkbox is not checked
if (!$("#checkboxID").is(":checked")) {
// do something if the checkbox is NOT checked
}
Example 2: jquery see if checkbox is checked
$('input.checkbox').is(':checked')