XML DOM textContent Property


Attr Object Reference Attr Object

Definition and Usage

The textContent property sets or returns the textual content of an attribute.

Syntax

attrObject.textContent


Example

The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and returns the textual content of the category attributes:

Example

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].textContent);
document.write("
");
}

Output:

COOKING
CHILDREN
WEB
WEB

Try it yourself »

Try-It-Yourself Demos

textContent - Set the textual content of an attribute


Attr Object Reference Attr Object

Color Picker

colorpicker