Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using jQuery 1.3.2, It seems the attr function does work in IE8 and FF 3 but not in IE7.

The problematic code:

.attr("disabled",true)

or

 .attr("disabled","disabled")

Is there an alternative way to disable an element? (a specific option in a SELECT element)

Thank you.

share|improve this question
You should post complete line with selector as well and possibly the html too. – Sarfraz Jul 28 '10 at 8:51
is your html validated?... it might be causing that problem... – Reigel Jul 28 '10 at 8:52
The .attr("disabled", "disabled") function works more than nicely on all major browsers. It is some other part of your code that doesn't work but cannot say as you didn't paste it. – Darin Dimitrov Jul 28 '10 at 8:55

1 Answer

IE 7 does not support disabled in select options. It's not a jQuery issue.

There's detailed info in this blog post.

There are Javascript based workarounds like this one that add the functionality (however, even they are not able to give the select the greyed-out look.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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