When you have a mouseover observer on an element "parent" and the event gets fired by the element "child" which is a child of "parent", event.element() returns the child. But when you have a mouseout observer on an element and it gets fired from a child element, event.element() returns only the parent.
I really need to know whether the mouseout event got fired by the parent or child, how can I do this?