The onlanguagechange
property of the WorkerGlobalScope
interface represents an EventHandler
to be called when the languagechange
event occurs and bubbles through the Worker
.
self.onlanguagechange = function() { ... };
The following code snippet shows an onlanguagechange
handler set inside a worker:
self.onlanguagechange = function() { console.log('Your preferred language settings have been changed'); }
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'WorkerGlobalScope.onlanguagechange' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 4 | ? | 3.5 | Yes | 11.5 | 4 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | 40 | ? | 4 | Yes | 5.1 | 4.0 |
The WorkerGlobalScope
interface it belongs to.
© 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/WorkerGlobalScope/onlanguagechange