DekGenius.com
Team LiB   Previous Section   Next Section
Document.createCDATASection( ) create a new CDATASection node

Availability

DOM Level 1 Core

Synopsis

CDATASection createCDATASection(Stringdata) 
    throws DOMException;

Arguments

data

The text of the CDATASection to create.

Returns

A newly created CDATASection node, with the specified data as its contents.

Throws

If the document is an HTML document, this method throws a DOMException with a code of NOT_SUPPORTED_ERR because HTML documents do not allow CDATASection nodes.

    Team LiB   Previous Section   Next Section