how to check checkbox is checked or not jquery 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 not checked
if (!$("#checkboxID").is(":checked")) {
}
Example 3: 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 4: check whether a checkbox is checked in jQuery
if ($('#grepperRocks').is(':checked')) {
}
Example 5: jquery see if checkbox is checked
$('input.checkbox').is(':checked')