PeriodicSyncEvent.tag
Draft: This page is not complete.
The tag
read-only property of the PeriodicSyncEvent
interface returns the developer-defined identifier for the PeriodicSyncEvent
. This is specified when calling the PeriodicSyncManager.register()
method of the PeriodicSyncManager
interface. Multiple tags can be used by the web app to run different periodic tasks at different frequencies.
Syntax
const tag = PeriodicSyncEvent.tag;
Value
Returns a String
of the defined identifier.
Examples
The following example demonstrates listening for a periodic sync event in the service worker, and accessing the tag
property.
self.addEventListener('periodicsync', event => { console.log(event.tag); // logs the events tag });
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
tag |
80 |
80 |
No |
No |
67 |
No |
80 |
80 |
No |
57 |
No |
13.0 |
See also
- Richer offline experiences with the Periodic Background Sync API
- A Periodic Background Sync demo app
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PeriodicSyncEvent/tag