The data
read-only property of the CompositionEvent
interface returns the characters generated by the input method that raised the event; its exact nature varies depending on the type of event that generated the CompositionEvent
object.
Syntax
myData = CompositionEvent.data
Value
A DOMString
representing the event data:
- For
compositionstart
events, this is the currently selected text that will be replaced by the string being composed. This value doesn't change even if content changes the selection range; rather, it indicates the string that was selected when composition started. - For
compositionupdate
, this is the string as it stands currently as editing is ongoing. - For
compositionend
events, this is the string as committed to the editor.
Specifications
Specification | Status | Comment |
---|---|---|
Document Object Model (DOM) Level 3 Events SpecificationThe definition of 'data' in that specification. | Obsolete | Initial definition. |
Browser compatibility
The compatibility table in 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.
Update compatibility data on GitHub
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
data
|
Chrome
Full support Yes |
Edge
Full support 12 |
Firefox
Full support 9 |
IE
Full support Yes |
Opera
No support No |
Safari
Full support Yes |
WebView Android
Full support Yes |
Chrome Android
Full support Yes |
Firefox Android
Full support 9 |
Opera Android
Full support Yes |
Safari iOS
Full support Yes |
Samsung Internet Android
Full support Yes |
Legend
- Full support
- Full support
- No support
- No support
See also
CompositionEvent.data by Mozilla Contributors is licensed under CC-BY-SA 2.5.