checkbox jquery event code example
Example 1: jquery check checkbox
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 2: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 3: 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?");
}
});
});
Example 4: check checkbox by jquery
$('.myCheckbox')[0].checked = true;
$('.myCheckbox')[0].checked = false;