jquery check checkbox 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 checkbox
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 3: jQuery check a radio button
$("#myRadioID").prop("checked", true);
$("#myRadioID").attr('checked', 'checked');
Example 4: jquery set checkbox
$('.checkboxClass').prop('checked', true);
$('.checkboxClass').attr('checked', true);
Example 5: checkbox is checked jquery
$(your_checkbox).is(':checked');
Example 6: jquery checkbox checked
$("checkbox").is(":checked")