I need to find if a textbox is disabled or enabled using Jquery.
You can find if the textbox is disabled using is method by passing :disabled selector to it. Try this.
is
:disabled
if($('textbox').is(':disabled')){ //textbox is disabled }