Answers for "how to find enabled text box jquery"

0

jquery enable textbox

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Posted by: Guest on May-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language