_event
- object
The native event
button
- int
The button that was pushed.
charCode
- int
The charCode for key events. Same as keyCode
currentTarget
- Node
Node reference for the element that the listener was attached to.
keyCode
- int
The keyCode for key events. Uses charCode if keyCode is not available
pageX
- int
The X location of the event on the page (including scroll)
pageY
- int
The Y location of the event on the page (including scroll)
relatedTarget
- Node
Node reference to the relatedTarget
target
- Node
Node reference for the targeted element
wheelDelta
- int
Number representing the direction and velocity of the movement of the mousewheel.
Negative is down, the higher the number, the faster. Applies to the mousewheel event.
which
- int
The button that was pushed. Same as button.