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

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -