Jquery property disable -



Jquery property disable -

is there property in jquery help me check if txtbox disabled? , lets me compare through if statement?

for example:

if ($('#ctl00_contentplaceholder1_textbox3'). == "false") { }

you can utilize :disabled selector.

try:

if ($('#ctl00_contentplaceholder1_textbox3').is(":disabled")) { }

or

if ($('#ctl00_contentplaceholder1_textbox3:disabled').length) { }

jquery

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -