$pseudoTarget * |
HTMLElement |
false |
Keeps the reference to pseudo element where event originated. |
altKey |
Boolean |
true |
Used to indicate whether the 'alt' key was depressed during the firing of the event. On some platforms this key may map to an alternative key name. |
bubbles * |
Boolean |
true |
Used to indicate whether or not an event is a bubbling event. |
button
|
Number |
true |
During mouse events caused by the depression or release of a mouse button, button is used to indicate which mouse button changed state. The values for button range from zero to indicate the left button of the mouse, one to indicate the middle button if present, and two to indicate the right button. For mice configured for left handed use in which the button actions are reversed the values are instead read from right to left. |
Acceptable values:
Value |
Description |
0 |
Left mouse button was pressed. |
1 |
Middle mouse button was pressed. |
2 |
Right mouse button was pressed. |
|
cancelable * |
Boolean |
true |
Used to indicate whether or not an event can have its default action prevented. |
clientX |
Number |
true |
The horizontal coordinate at which the event occurred relative to the DOM implementation's client area. |
clientY |
Number |
true |
The vertical coordinate at which the event occurred relative to the DOM implementation's client area. |
ctrlKey |
Boolean |
true |
Used to indicate whether the 'ctrl' key was depressed during the firing of the event. |
currentTarget * |
AMLNode
|
true |
Used to indicate the EventTarget whose EventListeners are currently being processed. This is particularly useful during capturing and bubbling. |
defaultPrevented * |
Boolean |
true |
Used to indicate whether preventDefault() has been called for this event. |
detail * |
Number |
false |
Specifies some detail information about the Event, depending on the type of event. |
eventPhase * |
Number |
true |
Used to indicate which phase of event flow is currently being evaluated. |
metaKey |
Boolean |
true |
Used to indicate whether the 'meta' key was depressed during the firing of the event. On some platforms this key may map to an alternative key name. |
namespaceURI * |
String |
true |
The namespace URI associated with this event at initialization time, or null if it is unspecified. |
relatedTarget |
EventTarget |
true |
Used to identify a secondary EventTarget related to a UI event. Currently this attribute is used with the mouseover event to indicate the EventTarget which the pointing device exited and with the mouseout event to indicate the EventTarget which the pointing device entered. |
screenX |
Number |
true |
The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system. |
screenY |
Number |
true |
The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system. |
shiftKey |
Boolean |
true |
Used to indicate whether the 'shift' key was depressed during the firing of the event. |
target * |
AMLNode
|
true |
Used to indicate the EventTarget to which the event was originally dispatched. |
timeStamp * |
TimeStamp |
true |
Used to specify the time (in milliseconds relative to the epoch) at which the event was created. |
type * |
String |
true |
The name of the event (case-insensitive). The name must be an XML name. |
view * |
Object |
false |
The view attribute identifies the AbstractView from which the event was generated. |