XML DOM appendData() Method


CDATA Object Reference CDATA Object

Definition and Usage

The appendData() method adds data at the end of a CDATA node.

Syntax

CDATANode.appedData(string)

Parameter Description
string Required. The string to add to the CDATA node


Example

The following code fragment loads "books_cdata.xml" into xmlDoc using loadXMLDoc() and appends text to the first <html> element:

Example

xmlDoc=loadXMLDoc("books_cdata.xml");

x=xmlDoc.getElementsByTagName("html")[0].childNodes[0];

x.appendData(" Wonderful!");
document.write(x.data);

Output:

Stunning! Wonderful!

Try it yourself »

CDATA Object Reference CDATA Object

Color Picker

colorpicker