ContentIndexEvent: id property
The read-only id
property of the ContentIndexEvent
interface is a String
which identifies the deleted content index via its id
.
Value
A String
representation of the deleted content index id.
Examples
This example listens for the contentdelete
event and logs the removed content index id.
The ContentIndexEvent
is only available to the global scope of a ServiceWorker
.
self.addEventListener("contentdelete", (event) => {
console.log(event.id);
});
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
id |
No |
No |
No |
No |
No |
No |
84 |
84 |
No |
60 |
No |
14.0 |
See also