Firefox Tomorrow

web api instance property

TextUpdateEvent: text property

View on MDN ↗

Limited availability

The TextUpdateEvent.text read-only property contains the text that was inserted within the updated range of an EditContext’s textupdate event.

Value

A String that contains the text that replaces the text contained between the updateRangeStart and updateRangeEnd indexes.

Examples

Using textupdate to display the inserted text and location

<div id="editor"></div>
const editorEl = document.getElementById("editor");
const editContext = new EditContext();
editorEl.editContext = editContext;

editContext.addEventListener("textupdate", (e) => {
  console.log(
    `The user inserted the text "${e.text}" at index ${e.updateRangeStart}.`,
  );
});

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.