WorkerGlobalScope.onoffline

Summary

The onoffline property of the WorkerGlobalScope interface represents an EventHandler to be called when the offline event occurs and bubbles through the Worker.

Syntax

self.onoffline = function() { ... };

Example

The following code snippet shows an onoffline handler set inside a worker:

self.onoffline = function() {
  console.log('Your worker is now offline');
}

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'WorkerGlobalScope.onoffline' in that specification.
Living Standard  

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.

Document Tags and Contributors

 Contributors to this page: fscholz, teoli, chrisdavidmills, kscarfone
 Last updated by: fscholz,