Answers for "if input has disable attribute jquery"

3

jquery button remove disabled attribute

//for a class
$('.inputDisabled').prop("disabled", false);
//for a ID
$('#inputDisabled').prop("disabled", false);
Posted by: Guest on January-23-2021
0

jquery check input is disable

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

Code answers related to "if input has disable attribute jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language