jquery checkbox on change code example
Example 1: jQuery checkbox changed event
$("#myCheckBoxID").change(function() {
if(this.checked) {
}else{
}
});
Example 2: events on checkbox in jquery
$(document).ready(function() {
$('#textbox1').val($(this).is(':checked'));
$('#checkbox1').change(function() {
if($(this).is(":checked")) {
var returnVal = confirm("Are you sure?");
$(this).attr("checked", returnVal);
}
$('#textbox1').val($(this).is(':checked'));
});
});
Example 3: checkbox click event jquery
$('input[type="checkbox"]').click(function(){
if($(this).is(":checked")){
$("#isClicked").val("Yes");
}
else if($(this).is(":not(:checked)")){
$("#isClicked").val("");
}
});
Example 4: how to change checkbox state in jquery
$('[name="SelectedGroup"]').prop('checked', true);
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);
});
});
Example 6: change checkbox jquery alert
$('#checkbox1').mousedown(function() {
if (!$(this).is(':checked')) {
this.checked = confirm("Are you sure?");
$(this).trigger("change");
}
});