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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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