Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 446 Bytes

index.md

File metadata and controls

9 lines (7 loc) · 446 Bytes

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 mouseover it holds reference to the node the mouse was previously over.
    • For mouseout it holds reference to the node the mouse moved to.

More info on MDN