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 -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -