How do I check/uncheck a checkbox input or radio button?You can check or uncheck a checkbox element or a radio button using the .prop() method:12345// Check #x$( "#x" ).prop( "checked", true );// Uncheck #x$( "#x" ).prop( "checked", false ); How do I disable/enable a form element? How do I get the text value of a selected option?