ContentIndexEvent()

Draft
This page is not complete.

The ContentIndexEvent() constructor creates a new ContentIndexEvent object whose type and other options are configured as specified.

Syntax

var ContentIndexEvent = new ContentIndexEvent(type, ContentIndexEventInit);

Parameters

type
A DOMString indicating the event which occurred. For ContentIndexEvent, this is always delete.
eventInitDict Optional
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.

Return value

A ContentIndexEvent object configured using the given inputs.

Examples

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'

Specifications

Specification Status Comment
Unknown
The definition of 'ContentIndexEvent' in that specification.
Unknown Initial definition.

Browser compatibility

No compatibility data found. Please contribute data for "api.ContentIndexEvent.ContentIndexEvent" (depth: 1) to the MDN compatibility data repository.

See also: