jquery mouseout problem
- by From.ME.to.YOU
hello
my html
<div id="parent">
<div id="child">cx</div>
</div>
when i use jquery
$('#parent').mouseout(function(){
//something here
});
i wonder why when my mouse enter the child div the function fires. i'm still inside parent div.
i want that mouseout function to fire only when i leave the parent div not when i'm on any child div
http://jsbin.com/esiju/ << example
Cheers