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.
.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