checkbox check jquery code example
Example 1: Setting “checked” for a checkbox with jQuery
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 2: 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 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: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 6: jquery in checkbox checked
$(selector).prop('checked', true);
$(selector).prop('checked', false);
isChecked = $(selector).prop('checked');