CharacterData: data property

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.

Example

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

Reading a comment using data

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

output.value = comment.data;

Setting the content of a text node using data

html
<span>Result: </span>Not set.
js
const span = document.querySelector("span");
const textnode = span.nextSibling;

textnode.data = "This text has been set using 'textnode.data'.";

Specifications

Specification
DOM Standard
# dom-characterdata-data

Browser compatibility

desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
data

See also