Window: event property
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The read-onlyWindow
propertyevent
returns theEvent
which is currently being handled by the site's code. Outside the context of an event handler, the value is alwaysundefined
.
Youshould avoid using this property in new code, and should instead use theEvent
passed into the event handler function. This property is not universally supported and even when supported introduces potential fragility to your code.
Note:This property can be fragile, in that there may be situations in which the returnedEvent
is not the expected value. In addition,Window.event
is not accurate for events dispatched withinshadow trees.
Specifications
Specification |
---|
DOM # dom-window-event |