I need to find if a textbox is disabled or enabled using Jquery.
You can use $(":disabled") to select all disabled items in the current context.
To determine whether a single item is disabled you can use $("#textbox1").is(":disabled").