jquery: nested tags and hover() not working in IE
- by mafka
hello folks!
i have a construction like this:
<div id="container">
<span>
<span></span>
</span>
<span>
<span></span>
</span>
</div>
i need to catch the mouseout event of the container, so i made jquery do this:
$("#container").hover('',function(){
alert("Out");
});
In…