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.
Syntax
var myResultingClientId = fetchEvent.resultingClientId;
Value
A DOMString.
Example
self.addEventListener('fetch', function(event) {
console.log(event.resultingClientId);
});
Specifications
| Specification | Status | Comment |
|---|---|---|
| Service Workers The definition of 'resultingClientId' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
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.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
resultingClientId | Chrome Full support 72 | Edge Full support 18 | Firefox Full support 65 | IE No support No | Opera Full support 60 | Safari No support No | WebView Android Full support 72 | Chrome Android Full support 72 | Firefox Android Full support 65 | Opera Android Full support 50 | Safari iOS No support No | Samsung Internet Android Full support 11.0 |
Legend
- Full support
- Full support
- No support
- No support
