jquery - select option hover is not working in IE -


i wrote little code tooltips in multiple select box, code working file in ff not in ie :(

ex:

$('#select > option').mouseover(function(){   alert($(this).text()); }); 

can me?

onmouseover not fire option elements in internet explorer. in fact, no mouse or keyboard events fire option elements. see msdn documentation events available:

http://msdn.microsoft.com/en-us/library/ms535877(vs.85).aspx

edit - same true of google chrome (and safari too).


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -