I have a two containers -- one is nested inside of another. When I hover over the parent, I want the child container to appear. When I mouseout, I want the child container to f
You should only check if the current Element is a descendant of your container.
If so abort the handler.
See: jquery descendant
Example:
ContainerElement.mouseleave(function (e) { if (ContainerElement.has(e.fromElement).length > 0) return; // Do your Stuff });