on checkbox change jquery code example
Example 1: jQuery checkbox changed event
//jQuery listen for checkbox change
$("#myCheckBoxID").change(function() {
if(this.checked) {
//I am checked
}else{
//I'm not checked
}
});
Example 2: events on checkbox in jquery
$(document).ready(function() {
//set initial state.
$('#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")){
//input element where you put value
$("#isClicked").val("Yes");
// console.log($("#isClicked").val());
}
else if($(this).is(":not(:checked)")){
$("#isClicked").val("");
// console.log( $("#isClicked").val());
}
});
Example 4: change checkbox jquery alert
$(document).ready(function() {
//set initial state.
$('#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 5: change checkbox jquery alert
$('#checkbox1').mousedown(function() {
if (!$(this).is(':checked')) {
this.checked = confirm("Are you sure?");
$(this).trigger("change");
}
});
Example 6: jquery watch checkbox change
$('input[type="checkbox"]').change(function() {
alert ("The element with id " + this.id + " changed.");
});