This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The TextUpdateEvent interface is a DOM event that represents a text or selection update in an editable text region that's attached to an EditContext instance.
This interface inherits properties from Event.
TextUpdateEvent() Experimental
Creates a new TextUpdateEvent object.
TextUpdateEvent.updateRangeStart Read only Experimental
Returns the index of the first character in the range of text that was updated.
TextUpdateEvent.updateRangeEnd Read only Experimental
Returns the index of the last character in the range of text that was updated.
TextUpdateEvent.text Read only Experimental
Returns the text that was inserted in the updated range.
TextUpdateEvent.selectionStart Read only Experimental
Returns the index of the first character in the new selection range, after the update.
TextUpdateEvent.selectionEnd Read only Experimental
Returns the index of the last character in the new selection range, after the update.
In the following example, the EditContext API is used to render editable text in a <canvas> element, and the textupdate event is used to render the text when the user is typing.
<canvas id="editor-canvas"></canvas>
const canvas = document.getElementById("editor-canvas");
const ctx = canvas.getContext("2d");
const editContext = new EditContext();
canvas.editContext = editContext;
function render() {
// Clear the canvas.
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Render the text.
ctx.fillText(editContext.text, 10, 10);
}
editContext.addEventListener("textupdate", (e) => {
// Re-render the editor view when the user is entering text.
render();
console.log(
`The user entered ${e.text}. Rendering the entire text: ${editContext.text}`,
);
});
| Specification |
|---|
| EditContext API> # dom-textupdateevent> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
TextUpdateEvent |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
TextUpdateEvent |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
selectionEnd |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
selectionStart |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
text |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
updateRangeEnd |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
updateRangeStart |
121 | 121 | No | 107 | No | 121 | No | 81 | No | 25.0 | 121 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TextUpdateEvent