У меня проблема в IE8 (Win XP). Здесь - мой код!Мой JQuery .hover()
не работает в 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;
}