The ononline property of the WorkerGlobalScope interface represents an EventHandler to be called when the online event occurs and bubbles through the Worker.
self.ononline = function() { ... }; The following code snippet shows an ononline handler set inside a worker:
self.ononline = function() {
console.log('Your worker is now online');
} | Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'WorkerGlobalScope.ononline' in that specification. | Living Standard |
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | 4 | 29 (29) | (Yes) | (Yes) | (Yes) |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | ? | 4 | 29.0 (29) | 1.4 | ? | ? | ? |
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/ononline