prop checkbox jquery code example
Example 1: jquery prop checked
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
Example 2: checkbox set checked jquery
.prop('checked', true);
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
.prop('checked', true);