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
Post a Comment