how to display checkbox jquery code example
Example 1: 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 );
}
})
Example 2: check checkbox by jquery
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 3: check checkbox by jquery
$('.myCheckbox')[0].checked = true;
$('.myCheckbox')[0].checked = false;