Summary
The ononline
property of the WorkerGlobalScope
interface represents an EventHandler
to be called when the online
event occurs and bubbles through the Worker
.
Syntax
self.ononline = function() { ... };
Example
The following code snippet shows an ononline
handler set inside a worker:
self.ononline = function() {
console.log('Your worker is now online');
}
Specifications
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'WorkerGlobalScope.ononline' in that specification. |
Living Standard | No change from Web Workers. |
Web Workers The definition of 'WorkerGlobalScope.ononline' in that specification. |
Candidate Recommendation | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 4 | 29 (29) | (Yes) | (Yes) | (Yes) |
See also
The WorkerGlobalScope
interface it belongs to.