Answers for "how to check if a form is disabled in jquery"

0

jquery disable form element

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Posted by: Guest on August-25-2021

Code answers related to "how to check if a form is disabled in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language