Issue: When quickly mousing over multiple sibling elements directly next to each other, sometimes the onMouseOver event is called on all of them simultaneously.
Expected Behavior: When mousing over sibling elements, I want ONLY the currently hovered element to call the onMouseOver element.
How can I limit the onMouseOver call so that it is only fired on the current hovered element as opposed to all the elements that have been hovered? Thanks in advance.