WindowEventHandlers
mixin describes the event handlers common to several interfaces like Window
, or HTMLBodyElement
and HTMLFrameSetElement
. Each of these interfaces can implement additional specific event handlers.
Note: WindowEventHandlers
is a mixin and not an interface; you can't actually create an object of type WindowEventHandlers
.
The events properties, of the form onXYZ
, are defined on the WindowEventHandlers
, and implemented by Window
, and WorkerGlobalScope
for Web Workers.
WindowEventHandlers.onafterprint
EventHandler
representing the code to be called when the afterprint
event is raised.WindowEventHandlers.onbeforeprint
EventHandler
representing the code to be called when the beforeprint
event is raised.WindowEventHandlers.onbeforeunload
EventHandler
representing the code to be called when the beforeunload
event is raised.WindowEventHandlers.onhashchange
EventHandler
representing the code to be called when the hashchange
event is raised.WindowEventHandlers.onlanguagechange
EventHandler
representing the code to be called when the languagechange
event is raised.WindowEventHandlers.onmessage
EventHandler
representing the code to be called when the message
event is raised.WindowEventHandlers.onoffline
EventHandler
representing the code to be called when the offline
event is raised.WindowEventHandlers.ononline
EventHandler
representing the code to be called when the online
event is raised.WindowEventHandlers.onpagehide
EventHandler
representing the code to be called when the pagehide
event is raised.WindowEventHandlers.onpageshow
EventHandler
representing the code to be called when the pageshow
event is raised.WindowEventHandlers.onpopstate
EventHandler
representing the code to be called when the popstate
event is raised.WindowEventHandlers.onstorage
EventHandler
representing the code to be called when the storage
event is raised.WindowEventHandlers.onunhandledrejection
Promise
rejection events.WindowEventHandlers.onunload
EventHandler
representing the code to be called when the unload
event is raised.This interface defines no method.
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'GlobalEventHandlers' in that specification. | Living Standard | No change since the latest snapshot, HTML5.1. |
HTML5.1 The definition of 'GlobalEventHandlers' in that specification. | Recommendation | Snapshot of WHATWG HTML Living Standard. Added onlanguage since the HTML5 snapshot. |
HTML5 The definition of 'GlobalEventHandlers' in that specification. | Recommendation | Snapshot of WHATWG HTML Living Standard. Creation of WindowEventHandlers (properties where on the target before it). |
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | ? | ? | ? |
onhashchange | 3.6 (1.9.2) | ? | ? | ? | ? |
onlanguage
| 32 (32) | ? | ? | ? | ? |
onstorage | 45 (45) | ? | ? | ? | ? |
Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | ? | ? | ? | ? |
onhashchange | 1.0 (1.9.2) | ? | ? | ? | ? |
onlanguage
| 32.0 (32) | ? | ? | ? | ? |
onstorage | 45 (45) | ? | ? | ? | ? |
© 2005–2017 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/WindowEventHandlers