jquery checkbox on check 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 checkbox checked
$("checkbox").is(":checked")
Example 3: oncheck event jquery
$(".checkbox").change(function() {
if(this.checked) {
}
});
Example 4: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 5: jquery in checkbox checked
$(selector).prop('checked', true);
$(selector).prop('checked', false);
isChecked = $(selector).prop('checked');
Example 6: checkbox on click jquery
$(document).ready(function() {
$('#textbox1').val($(this).is(':checked'));
$('#checkbox1').change(function() {
$('#textbox1').val($(this).is(':checked'));
});
$('#checkbox1').click(function() {
if (!$(this).is(':checked')) {
return confirm("Are you sure?");
}
});
});