This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Note: This feature is only available in Service Workers.
The updateUI() method of the BackgroundFetchUpdateUIEvent interface updates the title and icon in the user interface to show the status of a background fetch.
This method may only be run once, to notify the user on a failed or a successful fetch.
updateUI() updateUI(options)
options OptionalAn object containing any of the following:
icons OptionalA list of one or more image resources, containing icons for use in the user interface. An image resource is an object containing:
srcA string which is a URL of an image.
sizes OptionalA string which is equivalent to the sizes attribute of the <link> element.
type OptionalA string containing an image MIME type.
label OptionalA string providing a name for the associated image.
title OptionalA string containing the new title of the user interface.
A Promise.
InvalidStateError DOMException
Thrown if any of the following are true:
isTrusted property is false.BackgroundFetchUpdateUIEvent UI updated flag is already set, indicating that the updateUI() method has already been called.BackgroundFetchUpdateUIEvent is not active.The following example demonstrates updating the UI with a title and image icon on a successful fetch.
addEventListener("backgroundfetchsuccess", (event) => {
event.updateUI({
title: "Episode 5 ready to listen!",
icon: {
src: "path/to/success.ico",
sizes: "16x16 32x32 64x64",
},
});
});
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
updateUI |
74 | 79 | No | 62 | No | 74 | No | 53 | No | 11.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/BackgroundFetchUpdateUIEvent/updateUI