web api instance property
BackgroundFetchEvent: registration property
Limited availabilityAvailable in workers
The registration read-only property of the BackgroundFetchEvent interface returns a BackgroundFetchRegistration object.
Value
A BackgroundFetchRegistration.
Examples
In this example, if the user clicks on the user interface displaying the download progress, this fires the backgroundfetchclick event. The current BackgroundFetchRegistration is returned by calling event.registration.
addEventListener("backgroundfetchclick", (event) => {
console.log(event.registration);
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.