jquery change property code example
Example 1: jquery prop checked
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
Example 2: jquery set att
$input.attr("attributeName", "attributeValue");
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
$input.attr("attributeName", "attributeValue");