vote up 0 vote down star

I want to be able to select all disabled decandants of a given element, in my particular instance a table cell and then enable them.

NOTE that there may be elements that are not "inputs"

I have tired the following with no success

$("#myCell [disabled='disabled']").removeAttr('disabled')

and

$("#myCell [disabled='disabled']").attr('disabled','')
flag

75% accept rate

2 Answers

vote up 3 vote down check

Try:

$('#myCell :input:disabled').removeAttr('disabled');

The :input selector is going to select all input elements, and the :disabled selector is going to select elements that are disabled. You could probably just have the :disabled selector but it doesn't hurt to have both and is probably marginally faster to do so.

link|flag
This one won't work for me as I have other elements that are not input elements, selects for one, labels and thanks to the wonders of ASP.net tables and spans too – Jon P Oct 9 at 7:45
...? I'm not sure how that is a problem knowing what the two selectors do? – Paolo Bergantino Oct 9 at 8:03
vote up 0 vote down

My solution:

$("#myCell *[disabled='disabled']").removeAttr("disabled");

This * selector means 'all elements'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.