A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/CharacterData/deleteData below:

CharacterData: deleteData() method - Web APIs

CharacterData: deleteData() method

Baseline Widely available

The deleteData() method of the CharacterData interface removes all or part of the data from this CharacterData node.

Syntax
deleteData(offset, count)
Parameters
offset

The number of bytes from the start of the data to remove from. 0 is the first character of the string.

count

The number of bytes to remove.

Return value

None.

Exceptions
IndexSizeError DOMException

Thrown if offset is greater than the length of the contained data.

Example
<span>Result: </span>A long string.
const span = document.querySelector("span");
const textNode = span.nextSibling;

textNode.deleteData(1, 5);
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4