FetchEvent: resultingClientId property
Note: This feature is only available in Service Workers.
The resultingClientId
read-only property of the
FetchEvent
interface is the id
of the
client
that replaces the previous client during a page
navigation.
For example, when navigating from page A to page B resultingClientId
is
the ID of the client associated with page B.
If the fetch request is a subresource request or the request's
destination
is
report
, resultingClientId
will be an empty string.
Value
A string.
Examples
js
self.addEventListener("fetch", (event) => {
console.log(event.resultingClientId);
});
Specifications
Specification |
---|
Service Workers # fetch-event-resultingclientid |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
resultingClientId |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.