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
Post a Comment