index.md
May 11, 2016 ยท View on GitHub
Event targets
event.target: the element that dispatched the event.event.currentTarget: always refer to the element the event handler has been attached.event.relatedTarget:- For
mouseoverit holds reference to the node the mouse was previously over. - For
mouseoutit holds reference to the node the mouse moved to.
- For
More info on MDN