Readonly
AT_Readonly
bubblesReturns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
Readonly
BUBBLING_Readonly
cancelableReturns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
Readonly
CAPTURING_Readonly
composedReturns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.
The current DOM element within the event bubbling phase.
An optional object of data passed to an event method when the current executing handler is bound.
Readonly
defaultReturns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
The element where the currently-called jQuery event handler was attached.
Readonly
eventReturns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.
Readonly
isReturns true if event was dispatched by the user agent, and false otherwise.
Indicates whether the META key was pressed when the event fired.
The namespace specified when the event was triggered.
Readonly
NONEThe browser's original Event object.
The mouse position relative to the left edge of the document.
The mouse position relative to the top edge of the document.
The other DOM element involved in the event, if any.
The last value returned by an event handler that was triggered by this event, unless the value was undefined.
Readonly
srcThe DOM element that initiated the event.
Readonly
timeReturns the event's timestamp as the number of milliseconds measured relative to the time origin.
Readonly
typeReturns the type of event, e.g. "click", "hashchange", or "submit".
For key or mouse events, this property indicates the specific key or button that was pressed.
Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget.
Deprecated
Deprecated. Use
JQuery.Event
.