The ContentIndexEvent()
constructor creates a new ContentIndexEvent
object whose type and other options are configured as specified.
The ContentIndexEvent()
constructor creates a new ContentIndexEvent
object whose type and other options are configured as specified.
new ContentIndexEvent(type, ContentIndexEventInit);
A DOMString
indicating the event which occurred. For ContentIndexEvent
, this is always delete
.
An options object containing any initialization data you want to populate the ContentIndexEvent
object with. The options are:
id
: The id of the indexed content you want the ContentIndexEvent
to remove. A ContentIndexEvent
object configured using the given inputs.
This examples constructs a new ContentIndexEvent
with the relevant id.
var removeData = { id : 'unique-content-id' } var ciEvent = new ContentIndexEvent('contentdelete', removeData); ciEvent.id; // should return 'unique-content-id'
Specification |
---|
Content Index # content-index-event |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ContentIndexEvent |
No |
No |
No |
No |
No |
No |
84 |
84 |
No |
60 |
No |
14.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ContentIndexEvent/ContentIndexEvent