change checkbox status jquery code example
Example 1: jquery set checkbox checked
$('.checkbox').prop('checked', true);
$('.checkbox').attr('checked', true);
Example 2: jQuery checkbox changed event
$("#myCheckBoxID").change(function() {
if(this.checked) {
}else{
}
});
Example 3: jquery checkbox set checked
$('#myCheckBoxID').prop('checked', true);
$('#myCheckBoxID').attr('checked','checked');
Example 4: change checkbox jquery alert
$('#checkbox1').mousedown(function() {
if (!$(this).is(':checked')) {
this.checked = confirm("Are you sure?");
$(this).trigger("change");
}
});
Example 5: change checkbox jquery alert
$(document).ready(function() {
$('#textbox1').val(this.checked);
$('#checkbox1').change(function() {
if(this.checked) {
var returnVal = confirm("Are you sure?");
$(this).prop("checked", returnVal);
}
$('#textbox1').val(this.checked);
});
});