Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. WorkerGlobalScope
  4. online

WorkerGlobalScope: online event

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Note: This feature is only available inWeb Workers.

Theonline event of theWorkerGlobalScope fires when the device reconnects to the internet.

Syntax

Use the event name in methods likeaddEventListener(), or set an event handler property.

js
addEventListener("online", (event) => { })ononline = (event) => { }

Event type

A genericEvent.

Example

The following code snippet shows anonoffline handler set inside a worker:

js
self.ononline = () => {  console.log("Your worker is now online");};

The same snippet, but usingaddEventListener():

js
self.addEventListener("online", () => {  console.log("Your worker is now online");});

Specifications

Specification
HTML
# handler-workerglobalscope-ononline

Browser compatibility

See also

TheWorkerGlobalScope interface it belongs to.

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp