I got a problem in IE8(Win XP). Here is my code! My JQuery .hover() is not working on IE.
SCRIPT
$('select.lst option').hover(function(){
$(this).css('background-color','#EEE');
}
,function(){
$(this).css('background-color','#FFF');
}
);
HTML
<select class="lst" id="lstCustomer" name="lstCustomer" size="4">
<option value="11005100-17" style="background-color: rgb(255, 255, 255);">คุณจิระ </option>
</select>
CSS
.lst {
border:1px solid #CCCCCC;
height:150px;
width:150px;
}