The read-only Window
property event
returns the Event
which is currently being handled by the site's code. Outside the context of an event handler, the value is always undefined
.
You should avoid using this property in new code, and should instead use the Event
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 returned Event
is not the expected value. In addition, Window.event
is not accurate for events dispatched within shadow trees.
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Window.event' in that specification. | Living Standard | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 63 | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | Yes | Yes | 63 | Yes | Yes | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/event