InputEvent.data
The data
read-only property of the InputEvent
interface returns a DOMString
with inserted characters. This may be an empty string if the change doesn't insert text, such as when characters are deleted.
Syntax
var aString = inputEvent.data;
Value
A DOMString
.
Examples
In the following example, an event listener receives the input event. Any textual change to the <input>
element is retrieved by InputEvent.data
and inserted into a paragraph using the Node.textContent
property.
<p>Some text to copy and paste.</p> <input type="text"> <p class="result"></p>
var editable = document.querySelector('input'); var result = document.querySelector('.result'); editable.addEventListener('input', (e) => { result.textContent = "Inputted text: " + e.data; });
Specifications
Specification |
---|
Input Events Level 2 (Input Events 2) # dfn-data |
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 | |
data |
60 |
79 |
67 |
No |
47 |
10.1 |
60 |
60 |
67 |
44 |
10.3 |
8.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/InputEvent/data