docs.rodeo

MDN Web Docs mirror

CDATASection

{{APIRef("DOM")}} 

The CDATASection interface represents a CDATA section that can be used within XML to include extended portions of unescaped text. When inside a CDATA section, the symbols < and & don’t need escaping as they normally do.

In XML, a CDATA section looks like:

<![CDATA[ … ]]>

For example:

<foo>
  Here is a CDATA section: <![CDATA[ < > & ]]> with all kinds of unescaped text.
</foo>

The only sequence which is not allowed within a CDATA section is the closing sequence of a CDATA section itself, ]]>.

[!NOTE] CDATA sections should not be used within HTML. They are considered comments and are not displayed.

{{InheritanceDiagram}} 

Instance properties

This interface has no specific properties and implements those of its parent {{DOMxRef("Text")}} .

Instance methods

This interface has no specific methods and implements those of its parent {{DOMxRef("Text")}} .

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN