How can I change the background color when the user freezes? I tried this, but it does not work.
<select> <option>bmw</option> <option>audi</option> <option>mercedes</option> </select> $('option').hover(function(){ $(this).css("background-color","#FFFFCC"); });
source share