Baseline Widely available
The deleteData()
method of the CharacterData
interface removes all or part of the data from this CharacterData
node.
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.
None.
ExceptionsIndexSizeError
DOMException
Thrown if offset
is greater than the length of the contained data.
<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