You can check or uncheck a checkbox element or a radio button using the .prop() method:
.prop()
// Check #x$( "#x" ).prop( "checked", true ); // Uncheck #x$( "#x" ).prop( "checked", false );
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
No comments:
Post a Comment