best way to check if input is not disabled jquery code example
Example: jquery check input is disable
if($('textbox').is(':disabled')){
//textbox is disabled
}
if($('textbox').is(':disabled')){
//textbox is disabled
}