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 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;
}
share|improve this question
What is the issue? – rahul Nov 29 '10 at 11:17
1  
please post the code here – marcgg Nov 29 '10 at 11:23

2 Answers

up vote 1 down vote accepted

detecting mouse events on option elements does not work in IE, as already discussed in this post: select option hover is not working in IE

I wouldn't recommend the use of a multiline select box in this case anyway, because select boxes also have limitations in the way you can use css to change their appearance - you can't change the background-colors of options using css, at least not in every browser.

share|improve this answer

I think select option does not support this function.

share|improve this answer

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.