Answers for "how to check input field is disabled in jquery"

0

jquery check input is disable

if($('textbox').is(':disabled')){
     //textbox is disabled
}
Posted by: Guest on November-18-2020
3

disable input field with jquery

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

Code answers related to "how to check input field is disabled in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language