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

ios - Fragment Shader GLSL for texture, color and texture/color -

iphone - Dismissing a UIAlertView -

java - Does anyone know the name of this "LookAndFeel"? -