I have this example here to illustrate the situation: http://jsfiddle.net/nubrF/40/
If you hold your mouse onto the path of the animated element you can observe that the events are fired only in Firefox (not in IE, Chrome or Safari) when the target element passes "under" your mouse pointer.
I actually have two questions:
Is this the normal browser behavior?
What method do you recommend to simulate these events somehow and get notice when the target element passes under the mouse pointer?
I should mention that I already thought about pageX and pageY of the mouse and position of the element in the page but this solution seems complicated and not very clean.
Thanks for your help.