W3cubDocs

/Web APIs

FetchEvent: resultingClientId property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2022⁩.

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

self.addEventListener("fetch", (event) => {
  console.log(event.resultingClientId);
});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android WebView on iOS
resultingClientId 72 79 65 60 16 72 65 50 16 11.0 72 No

See also

© 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/FetchEvent/resultingClientId