CKEDITOR.htmlParser.cdata
A lightweight representation of HTML CDATA.
Filtering
Properties
-
CDATA has the same type as CKEDITOR.htmlParser.text This is a constant value set to CKEDITOR.NODE_TEXT.
Defaults to
CKEDITOR.NODE_TEXT value : StringCKEDITOR.htmlParser.cdata#valueThe CDATA value.
Methods
-
-
Gets the closest ancestor element of this element which satisfies given condition
Parameters
condition : String | Object | FunctionName of an ancestor, hash of names or validator function.
Returns
elementThe closest ancestor which satisfies given condition or
null.
-
-
Insert this node after given one.
Parameters
node : nodeThe node that will precede this element.
-
Insert this node before given one.
Parameters
node : nodeThe node that will follow this element.
-
Remove this node from a tree.
-
Replace this node with given one.
Parameters
node : nodeThe node that will replace this one.
-
Wraps this element with given
wrapper.Parameters
wrapper : elementThe element which will be this element's new parent.
Returns
elementWrapper.
writeHtml( writer )CKEDITOR.htmlParser.cdata#writeHtmlWrites the CDATA with no special manipulations.
Parameters
writer : basicWriterThe writer to which write the HTML.