Firefox Tomorrow

web api instance property

CharacterData: data property

View on MDN ↗

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.

Reading a comment using data

<!-- This is an HTML comment -->
<output id="result"></output>
const comment = document.body.childNodes[1];
const output = document.getElementById("result");

output.value = comment.data;
Interactive exampleOpen the canonical MDN source to run this embedded demo.

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'.";
Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also