CompositionEvent: CompositionEvent() constructor
The CompositionEvent() constructor creates a new CompositionEvent object.
Syntax
js
new CompositionEvent(type)
new CompositionEvent(type, options)
Parameters
type-
A string with the name of the event. It is case-sensitive and browsers set it to
compositionstart,compositionupdate, orcompositionend. optionsOptional-
An object that, in addition of the properties defined in
UIEvent(), has the following properties:dataOptional-
A string used to initialize the
dataproperty of the newCompositionEvent. Browser-generated events set it to the characters generated by the IME composition.
Return value
A new CompositionEvent object.
Specifications
| Specification |
|---|
| UI Events # dom-compositionevent-compositionevent |
Browser compatibility
| desktop | mobile | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
CompositionEvent() constructor | |||||||||||
See also
CompositionEvent, the interface of the objects it constructs.