[jQuery] Re: How to color a selected option in a select that will work on FF.

2009-02-22 Thread sirmoreno
When you select the colored option (Banana). On IE you can see the background color when the option is selected (the select is closed). But on FF and Chrome you can't see the color when the option is selected. On Feb 22, 12:44 pm, "Mauricio \(Maujor\) Samy Silva" wrote: > background-color CSS p

[jQuery] Re: How to color a selected option in a select that will work on FF.

2009-02-22 Thread Mauricio (Maujor) Samy Silva
background-color CSS property is well supported by IE and FF (Chrome not tested) So, double check your HTMl and CSS sintax. Here an example working: CSS: #a { background-color:#A0; } HTML Select your favorite fruit: Apple Orange Pineapple Banana Maurício