input checkbox 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 value
if ($('#check_id').is(":checked"))
{
}
Example 4: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 5: 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 6: jquery checkbox
if($("#isAgeSelected").is(':checked'))
$("#txtAge").show();
else
$("#txtAge").hide();