vote up 2 vote down star

In a small web application I'm setting some text in a text box and its color using JavaScript.

In the following snipped, el is my object. This code produces the correct effects under Firefox, Opera and Safari but no such luck under IE. I've been searching without success since most examples say to use x.style.color="color", which I'm using. My text shows up correctly but the color is grayed out.

The object is a disabled, borderless text box. I get no errors or warnings.

el.value = "TEXT"; el.style.color="blue";

flag

1 Answer

vote up 5 vote down check

In IE, you can't change the text color of a disabled text box

link|flag

Your Answer

Get an OpenID
or

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