checkbox in jquery 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 check checkbox
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 3: jquery checkbox checked
$("checkbox").is(":checked")
Example 4: 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 5: 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 6: how to check the checkbox in jquery
check all checkbox whit button
$( "#x" ).prop( "checked", true );
$( "#x" ).prop( "checked", false );
example
$('.checkAll').click(function () {
if($(':checkbox').is(':checked')){
$(':checkbox').prop( "checked", false );
}else{
$(':checkbox').prop( "checked", true );
}
})