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/data below:

CharacterData: data property - Web APIs

CharacterData: data property

Baseline Widely available

The data property of the CharacterData interface represent the value of the current object's data.

Value

A string with the character information contained in the CharacterData node.

When set to the null value, that null value is converted to the empty string (""), so cd.data = null is equivalent to cd.data = "".

Example

Note: CharacterData is an abstract interface. The examples below use two concrete interfaces implementing it, Text and Comment.

Setting the content of a text node using data
<span>Result: </span>Not set.
const span = document.querySelector("span");
const textNode = span.nextSibling;

textNode.data = "This text has been set using 'textNode.data'.";
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