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 have this:

<div id="root">
    <select onchange="go()">
        <option value="1" selected>A
        </option><option value="2">B
        </option><option value="3">C
        </option><option value="4">D
        </option><option value="5">E
        </option>
    </select>
</div>

How can I change the standard selected background blue color to red???

I can not find any solution, not even the ones in other questions in the stackoverflow...

Thanks in advanced Kiss Ana

share|improve this question
Are you using any Javascript Framework (jQuery, Mootools, ...) ? – Loïs Di Qual Aug 24 '11 at 10:41
Hi, yes I am: jQuery!!! – Ana Aug 24 '11 at 10:42
I want to do this: stackoverflow.com/questions/5089442/… – Ana Aug 24 '11 at 12:54

2 Answers

this piece of css will change the element with the attribute selected to red

option[selected]{
    background:#ff0000;
}

I'm not a hundred percent sure on the browser support for this selector...

share|improve this answer
That only changes the background to the selected item. I want to change the background to all the items when I click on the options.. – Ana Aug 24 '11 at 10:44
it's not possible because it's always getting system color like change the system theme. this will get the selected color based on the current theme of os – Pratik Aug 24 '11 at 10:47
:'( Ok thank you anyway – Ana Aug 24 '11 at 10:49
filamentgroup.com/lab/… – Ana Aug 24 '11 at 14:31

You can't do it directly on a select element. You should use an external library that will convert your select to a div template allowing you to change styles.

I'm using Chosen and it works well.

share|improve this answer
thanks I will check it now!!! :* – Ana Aug 24 '11 at 14:22
filamentgroup.com/lab/… – Ana Aug 24 '11 at 14:31
That should work too. – Loïs Di Qual Aug 24 '11 at 15:20

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.