{hidden}
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE{hidden}
{sub-section:description|text=}h6.Creating XML objects
*from a string*
{code}var myXml = new XML('<test level="1"><test2 level="2">A value</test2></test>');{code}

*using XML object notation*
{code}var myXml =
<test level="1">
  <test2 level="2">A value</test2>
</test>;{code}

*using JavaScript variables*
{code}var myValue = 'hello, some value!';
var myXml =
<test level="1">
  <test2 level="2">{myValue}</test2>
</test>;{code}

h6.Accessing the XML
*General*
{code}var myXml = new XML('<test level="1"><test2 level="2">A value</test2></test>');
application.output(myXml.test2.toString()); //outputs 'A value'
{code}

*A specific index on subnodes*
{code}var myXml = new XML('<test level="1"><test2 level="2">A value</test2><test2 level="2">Another value</test2></test>');
application.output(myXml.test2[1].toXMLString()); //outputs '<test2 level="2">Another value</test2>'
{code}

h3.XML in Action!
{video:http://www.servoy.com/docs/servoy_4/tutorials/qv_javascript_XML/JS_XML.swf}{sub-section}\\ 

{table:id=|class=servoy sSummary}{colgroup}{column:width=80px|padding=0px}{column}{column}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=2}Property Summary{th}{tr}{tbody}{tr}{td}[Boolean]{td}{td}[#ignoreComments]
If set to true, then comments in the XML are ignored when constructing new XML objects.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#ignoreProcessingInstructions]
If set to true, then processing instructions are ignored when constructing new XML objects.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#ignoreWhitespace]
If set to true, then whitespace in the XML is ignored when constructing new XML objects.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#prettyIndent]
The amount of positions used when indenting child nodes are relative to their parent
if prettyPrinting is enabled.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#prettyPrinting]
If set to true, then toString() and toXMLString() methods will normalize the output
to achieve a uniform appearance.{td}{tr}{tbody}{table}\\ 

{table:id=|class=servoy sSummary}{colgroup}{column:width=80px|padding=0px}{column}{column}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=2}Method Summary{th}{tr}{tbody}{tr}{td}[XML]{td}{td}[#addNamespace]\(namespaceToAdd)
Takes one argument which can be a string with a namespace URI or a Namespace object and adds the 
argument to the in scope namespaces of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#appendChild]\(childToAppend)
Appends a new child at the end of this XML object's properties, the changed XML object is then returned.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#attribute]\(attributeName)
Takes a single argument with the attribute name and returns an XMLList with attributes 
matching the argument.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#attributes]\()
Returns an XMLList with the attributes of this XML object which are in no namespace.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#child]\(propertyName)
Returns an XMLList with children matching the property name.{td}{tr}{tbody}{tbody}{tr}{td}[Number]{td}{td}[#childIndex]\()
If the XML object has no parent then the special number NaN is returned, otherwise the ordinal 
position the object has in the context of its parent is returned.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#children]\()
Returns an XMLList with the child nodes of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#comments]\()
Returns an XMLList with the comment nodes which are children of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#contains]\(value)
Calling xmlObject.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#copy]\()
Returns a deep copy of the XML object it is called on where the internal parent property is set to null{td}{tr}{tbody}{tbody}{tr}{td}[Object]{td}{td}[#defaultSettings]\()
Returns an object containing the default XML settings.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#descendants]\()
Returns an XMLList with the descendants matching the passed name argument or with all descendants 
if no argument is passed.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#descendants]\(name)
Returns an XMLList with the descendants matching the passed name argument or with all descendants 
if no argument is passed.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#elements]\()
Takes one optional argument, the name of elements you are looking for, and returns an XMLList with 
all matching child elements.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#elements]\(name)
Takes one optional argument, the name of elements you are looking for, and returns an XMLList with 
all matching child elements.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#hasComplexContent]\()
Returns false for XML objects of node kind 'text', 'attribute', 'comment', and 'processing\-instruction'.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#hasOwnProperty]\(propertyName)
Returns true if the XML object the method is called on has a property of that name.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#hasSimpleContent]\()
Returns true for XML objects of node kind text or attribute.{td}{tr}{tbody}{tbody}{tr}{td}[Array]{td}{td}[#inScopeNamespaces]\()
Returns an array of Namespace objects representing the namespace that are in scope for this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#insertChildAfter]\(childToInserAfter, childToInsert)
Takes two arguments, an existing child to insert after and the new child to be inserted.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#insertChildBefore]\(childToInsertBefore, childToInsert)
Takes two arguments, an existing child to insert before and the new child to be inserted.{td}{tr}{tbody}{tbody}{tr}{td}[Number]{td}{td}[#length]\()
This always returns 1.{td}{tr}{tbody}{tbody}{tr}{td}[String]{td}{td}[#localName]\()
returns the local name part if the XML object has a name.{td}{tr}{tbody}{tbody}{tr}{td}[QName]{td}{td}[#name]\()
Returns the qualified name (a QName object) of the XML object it is called{td}{tr}{tbody}{tbody}{tr}{td}[Namespace]{td}{td}[#namespace]\()
If no argument is passed to the method then it returns the namespace associated with the qualified 
name of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[Namespace]{td}{td}[#namespace]\(prefix)
If no argument is passed to the method then it returns the namespace associated with the qualified 
name of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[Array]{td}{td}[#namespaceDeclarations]\()
Returns an array with the namespace declarations associated with the XML object it is called on.{td}{tr}{tbody}{tbody}{tr}{td}[String]{td}{td}[#nodeKind]\()
Returns a string denoting the kind of node this XML object represents.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#normalize]\()
Returns this XML object after normalizing all text content.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#parent]\()
Returns the parent XML object of this XML object or null if there is no parent.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#prependChild]\(childToPrepend)
Iinserts the given value as the first child of the XML object and returns the XML object.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#processingInstructions]\()
If no argument is passed in then the method returns an XMLList with all the children of the XML 
object which are processing instructions.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#processingInstructions]\(name)
If no argument is passed in then the method returns an XMLList with all the children of the XML 
object which are processing instructions.{td}{tr}{tbody}{tbody}{tr}{td}[Boolean]{td}{td}[#propertyIsEnumerable]\(propertyName)
Returns true if the property name is '0' and false otherwise.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#removeNamespace]\(namespace)
Removes the namespace from the in scope namespaces of this XML object if the namespace 
is not used for the qualified name of the object or its attributes.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#replace]\(propertyName, replacementValue)
Takes two arguments, the property name of the property / properties to be replaced, and the 
value to replace the properties.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#setChildren]\(value)
Replaces all children of the XML object with this value.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setLocalName]\(name)
Changes the local name of this XML object to the name passed in.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setName]\(name)
Replaces the name of this XML object with the name passed in.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setNamespace]\(namespace)
Changes the namespace associated with the name of this XML object to the new namespace.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setSettings]\()
Allows the global XML settings to be adjusted or restored to their default values.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setSettings]\(settings)
Allows the global XML settings to be adjusted or restored to their default values.{td}{tr}{tbody}{tbody}{tr}{td}[Object]{td}{td}[#settings]\()
Returns an object containing the global XML settings.{td}{tr}{tbody}{tbody}{tr}{td}[XMLList]{td}{td}[#text]\()
Returns an XMLList with all the children of this XML object that represent text nodes.{td}{tr}{tbody}{tbody}{tr}{td}[String]{td}{td}[#toString]\()
Returns a convenient string value of this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[String]{td}{td}[#toXMLString]\()
Returns a string with the serialized XML markup for this XML object.{td}{tr}{tbody}{tbody}{tr}{td}[XML]{td}{td}[#valueOf]\()
The method simply returns the XML object it is called on.{td}{tr}{tbody}{table}\\ 

{table:id=property|class=servoy sDetail}{colgroup}{column:width=100%|padding=0px}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=1}Property Details{th}{tr}{tbody:id=ignoreComments|class=node}{tr:id=name}{td}h6.ignoreComments{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:ignoreComments_des|trigger=button|text=}{sub-section}{sub-section:ignoreComments_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:ignoreComments_snc|trigger=button|text=}{sub-section}{sub-section:ignoreComments_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:ignoreComments_prs|trigger=button|text=}{sub-section}{sub-section:ignoreComments_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:ignoreComments_ret|trigger=button|text=}{sub-section}{sub-section:ignoreComments_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:ignoreComments_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreComments_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:ignoreComments_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreComments_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:ignoreComments_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreComments_sam|trigger=none}{code:language=javascript}
var element = <foo><!-- my comment --><bar/></foo>;
application.output(element.comments().length());
application.output(element.toXMLString());

XML.ignoreComments = false;

element = <foo><!-- my comment --><bar/></foo>;
application.output(element.comments().length());
application.output(element.toXMLString());
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=ignoreProcessingInstructions|class=node}{tr:id=name}{td}h6.ignoreProcessingInstructions{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:ignoreProcessingInstructions_des|trigger=button|text=}{sub-section}{sub-section:ignoreProcessingInstructions_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:ignoreProcessingInstructions_snc|trigger=button|text=}{sub-section}{sub-section:ignoreProcessingInstructions_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:ignoreProcessingInstructions_prs|trigger=button|text=}{sub-section}{sub-section:ignoreProcessingInstructions_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:ignoreProcessingInstructions_ret|trigger=button|text=}{sub-section}{sub-section:ignoreProcessingInstructions_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:ignoreProcessingInstructions_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreProcessingInstructions_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:ignoreProcessingInstructions_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreProcessingInstructions_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:ignoreProcessingInstructions_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreProcessingInstructions_sam|trigger=none}{code:language=javascript}
XML.ignoreProcessingInstructions=false;
var xmlElement = <publishing><?process author="yes"?><author type="leadership">John C. Maxwell</author></publishing>;
application.output(" Element = "+ xmlElement.toXMLString());
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=ignoreWhitespace|class=node}{tr:id=name}{td}h6.ignoreWhitespace{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:ignoreWhitespace_des|trigger=button|text=}{sub-section}{sub-section:ignoreWhitespace_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:ignoreWhitespace_snc|trigger=button|text=}{sub-section}{sub-section:ignoreWhitespace_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:ignoreWhitespace_prs|trigger=button|text=}{sub-section}{sub-section:ignoreWhitespace_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:ignoreWhitespace_ret|trigger=button|text=}{sub-section}{sub-section:ignoreWhitespace_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:ignoreWhitespace_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreWhitespace_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:ignoreWhitespace_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreWhitespace_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:ignoreWhitespace_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:ignoreWhitespace_sam|trigger=none}{code:language=javascript}
XML.ignoreWhitespace = false;
 var xmlElement =
 <publishing>
 	<author>John C. Maxwell</author>
 </publishing>;
 application.output(xmlElement.toString());
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=prettyIndent|class=node}{tr:id=name}{td}h6.prettyIndent{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:prettyIndent_des|trigger=button|text=}{sub-section}{sub-section:prettyIndent_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:prettyIndent_snc|trigger=button|text=}{sub-section}{sub-section:prettyIndent_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:prettyIndent_prs|trigger=button|text=}{sub-section}{sub-section:prettyIndent_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:prettyIndent_ret|trigger=button|text=}{sub-section}{sub-section:prettyIndent_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:prettyIndent_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyIndent_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:prettyIndent_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyIndent_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:prettyIndent_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyIndent_sam|trigger=none}{code:language=javascript}
var xmlElement = <publishing><author>Tom DeMarco</author><author>Roger S. Pressman</author></publishing>;
application.output(xmlElement.toXMLString());
XML.prettyPrinting = true;
XML.prettyIndent = 4;
xmlElement = <publishing><author>Tom DeMarco</author><author>Roger S. Pressman</author></publishing>;
application.output(xmlElement.toXMLString());
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=prettyPrinting|class=node}{tr:id=name}{td}h6.prettyPrinting{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:prettyPrinting_des|trigger=button|text=}{sub-section}{sub-section:prettyPrinting_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:prettyPrinting_snc|trigger=button|text=}{sub-section}{sub-section:prettyPrinting_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:prettyPrinting_prs|trigger=button|text=}{sub-section}{sub-section:prettyPrinting_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:prettyPrinting_ret|trigger=button|text=}{sub-section}{sub-section:prettyPrinting_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:prettyPrinting_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyPrinting_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:prettyPrinting_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyPrinting_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:prettyPrinting_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prettyPrinting_sam|trigger=none}{code:language=javascript}
var xmlElement = <publishing><author>Tom DeMarco</author><author>Roger S. Pressman</author></publishing>;
application.output(xmlElement.toXMLString());
XML.prettyPrinting = true;
XML.prettyIndent = 4;
xmlElement = <publishing><author>Tom DeMarco</author><author>Roger S. Pressman</author></publishing>;
application.output(xmlElement.toXMLString());
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{table}\\ 

{table:id=function|class=servoy sDetail}{colgroup}{column:width=100%|padding=0px}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=1}Method Details{th}{tr}{tbody:id=addNamespace-String|class=node}{tr:id=name}{td}h6.addNamespace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}addNamespace{span}{span:id=iets|style=float: left;}\(namespaceToAdd){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:addNamespace-String_des|trigger=button|text=}{sub-section}{sub-section:addNamespace-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:addNamespace-String_snc|trigger=button|text=}{sub-section}{sub-section:addNamespace-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:addNamespace-String_prs|trigger=button|text=}{sub-section}{sub-section:addNamespace-String_prs|trigger=none|class=sIndent}\{[String]} namespaceToAdd
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:addNamespace-String_ret|trigger=button|text=}{sub-section}{sub-section:addNamespace-String_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:addNamespace-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:addNamespace-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:addNamespace-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:addNamespace-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:addNamespace-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:addNamespace-String_sam|trigger=none}{code:language=javascript}
xml.addNamespace(namespaceToAdd)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=appendChild-XML|class=node}{tr:id=name}{td}h6.appendChild{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}appendChild{span}{span:id=iets|style=float: left;}\(childToAppend){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:appendChild-XML_des|trigger=button|text=}{sub-section}{sub-section:appendChild-XML_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:appendChild-XML_snc|trigger=button|text=}{sub-section}{sub-section:appendChild-XML_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:appendChild-XML_prs|trigger=button|text=}{sub-section}{sub-section:appendChild-XML_prs|trigger=none|class=sIndent}\{[XML]} childToAppend
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:appendChild-XML_ret|trigger=button|text=}{sub-section}{sub-section:appendChild-XML_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:appendChild-XML_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:appendChild-XML_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:appendChild-XML_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:appendChild-XML_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:appendChild-XML_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:appendChild-XML_sam|trigger=none}{code:language=javascript}
xml.appendChild(childToAppend)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=attribute-String|class=node}{tr:id=name}{td}h6.attribute{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}attribute{span}{span:id=iets|style=float: left;}\(attributeName){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:attribute-String_des|trigger=button|text=}{sub-section}{sub-section:attribute-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:attribute-String_snc|trigger=button|text=}{sub-section}{sub-section:attribute-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:attribute-String_prs|trigger=button|text=}{sub-section}{sub-section:attribute-String_prs|trigger=none|class=sIndent}\{[String]} attributeName
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:attribute-String_ret|trigger=button|text=}{sub-section}{sub-section:attribute-String_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:attribute-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attribute-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:attribute-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attribute-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:attribute-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attribute-String_sam|trigger=none}{code:language=javascript}
xml.attribute(attributeName)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=attributes|class=node}{tr:id=name}{td}h6.attributes{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}attributes{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:attributes_des|trigger=button|text=}{sub-section}{sub-section:attributes_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:attributes_snc|trigger=button|text=}{sub-section}{sub-section:attributes_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:attributes_prs|trigger=button|text=}{sub-section}{sub-section:attributes_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:attributes_ret|trigger=button|text=}{sub-section}{sub-section:attributes_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:attributes_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attributes_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:attributes_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attributes_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:attributes_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:attributes_sam|trigger=none}{code:language=javascript}
xml.attributes()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=child-String|class=node}{tr:id=name}{td}h6.child{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}child{span}{span:id=iets|style=float: left;}\(propertyName){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:child-String_des|trigger=button|text=}{sub-section}{sub-section:child-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:child-String_snc|trigger=button|text=}{sub-section}{sub-section:child-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:child-String_prs|trigger=button|text=}{sub-section}{sub-section:child-String_prs|trigger=none|class=sIndent}\{[String]} propertyName
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:child-String_ret|trigger=button|text=}{sub-section}{sub-section:child-String_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:child-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:child-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:child-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:child-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:child-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:child-String_sam|trigger=none}{code:language=javascript}
xml.child(childPropertyName)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=childIndex|class=node}{tr:id=name}{td}h6.childIndex{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Number]{span}{span:id=iets|style=float: left; font-weight: bold;}childIndex{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:childIndex_des|trigger=button|text=}{sub-section}{sub-section:childIndex_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:childIndex_snc|trigger=button|text=}{sub-section}{sub-section:childIndex_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:childIndex_prs|trigger=button|text=}{sub-section}{sub-section:childIndex_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:childIndex_ret|trigger=button|text=}{sub-section}{sub-section:childIndex_ret|trigger=none|class=sIndent}[Number]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:childIndex_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:childIndex_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:childIndex_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:childIndex_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:childIndex_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:childIndex_sam|trigger=none}{code:language=javascript}
xml.childIndex()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=children|class=node}{tr:id=name}{td}h6.children{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}children{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:children_des|trigger=button|text=}{sub-section}{sub-section:children_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:children_snc|trigger=button|text=}{sub-section}{sub-section:children_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:children_prs|trigger=button|text=}{sub-section}{sub-section:children_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:children_ret|trigger=button|text=}{sub-section}{sub-section:children_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:children_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:children_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:children_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:children_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:children_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:children_sam|trigger=none}{code:language=javascript}
xml.children()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=comments|class=node}{tr:id=name}{td}h6.comments{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}comments{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:comments_des|trigger=button|text=}{sub-section}{sub-section:comments_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:comments_snc|trigger=button|text=}{sub-section}{sub-section:comments_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:comments_prs|trigger=button|text=}{sub-section}{sub-section:comments_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:comments_ret|trigger=button|text=}{sub-section}{sub-section:comments_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:comments_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:comments_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:comments_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:comments_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:comments_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:comments_sam|trigger=none}{code:language=javascript}
xml.comments()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=contains-Object|class=node}{tr:id=name}{td}h6.contains{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Boolean]{span}{span:id=iets|style=float: left; font-weight: bold;}contains{span}{span:id=iets|style=float: left;}\(value){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:contains-Object_des|trigger=button|text=}{sub-section}{sub-section:contains-Object_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:contains-Object_snc|trigger=button|text=}{sub-section}{sub-section:contains-Object_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:contains-Object_prs|trigger=button|text=}{sub-section}{sub-section:contains-Object_prs|trigger=none|class=sIndent}\{[Object]} value
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:contains-Object_ret|trigger=button|text=}{sub-section}{sub-section:contains-Object_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:contains-Object_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:contains-Object_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:contains-Object_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:contains-Object_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:contains-Object_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:contains-Object_sam|trigger=none}{code:language=javascript}
xml.contains(value)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=copy|class=node}{tr:id=name}{td}h6.copy{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}copy{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:copy_des|trigger=button|text=}{sub-section}{sub-section:copy_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:copy_snc|trigger=button|text=}{sub-section}{sub-section:copy_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:copy_prs|trigger=button|text=}{sub-section}{sub-section:copy_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:copy_ret|trigger=button|text=}{sub-section}{sub-section:copy_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:copy_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:copy_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:copy_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:copy_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:copy_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:copy_sam|trigger=none}{code:language=javascript}
xml.copy()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=defaultSettings|class=node}{tr:id=name}{td}h6.defaultSettings{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Object]{span}{span:id=iets|style=float: left; font-weight: bold;}defaultSettings{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:defaultSettings_des|trigger=button|text=}{sub-section}{sub-section:defaultSettings_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:defaultSettings_snc|trigger=button|text=}{sub-section}{sub-section:defaultSettings_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:defaultSettings_prs|trigger=button|text=}{sub-section}{sub-section:defaultSettings_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:defaultSettings_ret|trigger=button|text=}{sub-section}{sub-section:defaultSettings_ret|trigger=none|class=sIndent}[Object]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:defaultSettings_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:defaultSettings_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:defaultSettings_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:defaultSettings_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:defaultSettings_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:defaultSettings_sam|trigger=none}{code:language=javascript}
xml.defaultSettings()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=descendants|class=node}{tr:id=name}{td}h6.descendants{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}descendants{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:descendants_des|trigger=button|text=}{sub-section}{sub-section:descendants_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:descendants_snc|trigger=button|text=}{sub-section}{sub-section:descendants_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:descendants_prs|trigger=button|text=}{sub-section}{sub-section:descendants_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:descendants_ret|trigger=button|text=}{sub-section}{sub-section:descendants_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:descendants_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:descendants_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:descendants_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants_sam|trigger=none}{code:language=javascript}
xml.descendants([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=descendants-String|class=node}{tr:id=name}{td}h6.descendants{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}descendants{span}{span:id=iets|style=float: left;}\(name){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:descendants-String_des|trigger=button|text=}{sub-section}{sub-section:descendants-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:descendants-String_snc|trigger=button|text=}{sub-section}{sub-section:descendants-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:descendants-String_prs|trigger=button|text=}{sub-section}{sub-section:descendants-String_prs|trigger=none|class=sIndent}\{[String]} name
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:descendants-String_ret|trigger=button|text=}{sub-section}{sub-section:descendants-String_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:descendants-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:descendants-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:descendants-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:descendants-String_sam|trigger=none}{code:language=javascript}
xml.descendants([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=elements|class=node}{tr:id=name}{td}h6.elements{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}elements{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:elements_des|trigger=button|text=}{sub-section}{sub-section:elements_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:elements_snc|trigger=button|text=}{sub-section}{sub-section:elements_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:elements_prs|trigger=button|text=}{sub-section}{sub-section:elements_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:elements_ret|trigger=button|text=}{sub-section}{sub-section:elements_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:elements_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:elements_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:elements_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements_sam|trigger=none}{code:language=javascript}
xml.elements([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=elements-String|class=node}{tr:id=name}{td}h6.elements{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}elements{span}{span:id=iets|style=float: left;}\(name){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:elements-String_des|trigger=button|text=}{sub-section}{sub-section:elements-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:elements-String_snc|trigger=button|text=}{sub-section}{sub-section:elements-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:elements-String_prs|trigger=button|text=}{sub-section}{sub-section:elements-String_prs|trigger=none|class=sIndent}\{[String]} name
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:elements-String_ret|trigger=button|text=}{sub-section}{sub-section:elements-String_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:elements-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:elements-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:elements-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:elements-String_sam|trigger=none}{code:language=javascript}
xml.elements([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=hasComplexContent|class=node}{tr:id=name}{td}h6.hasComplexContent{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Boolean]{span}{span:id=iets|style=float: left; font-weight: bold;}hasComplexContent{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:hasComplexContent_des|trigger=button|text=}{sub-section}{sub-section:hasComplexContent_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:hasComplexContent_snc|trigger=button|text=}{sub-section}{sub-section:hasComplexContent_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:hasComplexContent_prs|trigger=button|text=}{sub-section}{sub-section:hasComplexContent_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:hasComplexContent_ret|trigger=button|text=}{sub-section}{sub-section:hasComplexContent_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:hasComplexContent_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasComplexContent_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:hasComplexContent_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasComplexContent_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:hasComplexContent_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasComplexContent_sam|trigger=none}{code:language=javascript}
xml.hasComplexContent()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=hasOwnProperty-String|class=node}{tr:id=name}{td}h6.hasOwnProperty{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Boolean]{span}{span:id=iets|style=float: left; font-weight: bold;}hasOwnProperty{span}{span:id=iets|style=float: left;}\(propertyName){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:hasOwnProperty-String_des|trigger=button|text=}{sub-section}{sub-section:hasOwnProperty-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:hasOwnProperty-String_snc|trigger=button|text=}{sub-section}{sub-section:hasOwnProperty-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:hasOwnProperty-String_prs|trigger=button|text=}{sub-section}{sub-section:hasOwnProperty-String_prs|trigger=none|class=sIndent}\{[String]} propertyName
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:hasOwnProperty-String_ret|trigger=button|text=}{sub-section}{sub-section:hasOwnProperty-String_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:hasOwnProperty-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasOwnProperty-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:hasOwnProperty-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasOwnProperty-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:hasOwnProperty-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasOwnProperty-String_sam|trigger=none}{code:language=javascript}
xml.hasOwnProperty(propertyName)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=hasSimpleContent|class=node}{tr:id=name}{td}h6.hasSimpleContent{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Boolean]{span}{span:id=iets|style=float: left; font-weight: bold;}hasSimpleContent{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:hasSimpleContent_des|trigger=button|text=}{sub-section}{sub-section:hasSimpleContent_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:hasSimpleContent_snc|trigger=button|text=}{sub-section}{sub-section:hasSimpleContent_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:hasSimpleContent_prs|trigger=button|text=}{sub-section}{sub-section:hasSimpleContent_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:hasSimpleContent_ret|trigger=button|text=}{sub-section}{sub-section:hasSimpleContent_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:hasSimpleContent_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasSimpleContent_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:hasSimpleContent_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasSimpleContent_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:hasSimpleContent_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:hasSimpleContent_sam|trigger=none}{code:language=javascript}
xml.hasSimpleContent()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=inScopeNamespaces|class=node}{tr:id=name}{td}h6.inScopeNamespaces{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Array]{span}{span:id=iets|style=float: left; font-weight: bold;}inScopeNamespaces{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:inScopeNamespaces_des|trigger=button|text=}{sub-section}{sub-section:inScopeNamespaces_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:inScopeNamespaces_snc|trigger=button|text=}{sub-section}{sub-section:inScopeNamespaces_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:inScopeNamespaces_prs|trigger=button|text=}{sub-section}{sub-section:inScopeNamespaces_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:inScopeNamespaces_ret|trigger=button|text=}{sub-section}{sub-section:inScopeNamespaces_ret|trigger=none|class=sIndent}[Array]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:inScopeNamespaces_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:inScopeNamespaces_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:inScopeNamespaces_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:inScopeNamespaces_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:inScopeNamespaces_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:inScopeNamespaces_sam|trigger=none}{code:language=javascript}
xml.inScopeNamespaces()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=insertChildAfter-XML_XML|class=node}{tr:id=name}{td}h6.insertChildAfter{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}insertChildAfter{span}{span:id=iets|style=float: left;}\(childToInserAfter, childToInsert){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:insertChildAfter-XML_XML_des|trigger=button|text=}{sub-section}{sub-section:insertChildAfter-XML_XML_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:insertChildAfter-XML_XML_snc|trigger=button|text=}{sub-section}{sub-section:insertChildAfter-XML_XML_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:insertChildAfter-XML_XML_prs|trigger=button|text=}{sub-section}{sub-section:insertChildAfter-XML_XML_prs|trigger=none|class=sIndent}\{[XML]} childToInserAfter
\{[XML]} childToInsert
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:insertChildAfter-XML_XML_ret|trigger=button|text=}{sub-section}{sub-section:insertChildAfter-XML_XML_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:insertChildAfter-XML_XML_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildAfter-XML_XML_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:insertChildAfter-XML_XML_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildAfter-XML_XML_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:insertChildAfter-XML_XML_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildAfter-XML_XML_sam|trigger=none}{code:language=javascript}
xml.insertChildAfter(childToInsertAfter, childToInsert)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=insertChildBefore-XML_XML|class=node}{tr:id=name}{td}h6.insertChildBefore{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}insertChildBefore{span}{span:id=iets|style=float: left;}\(childToInsertBefore, childToInsert){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:insertChildBefore-XML_XML_des|trigger=button|text=}{sub-section}{sub-section:insertChildBefore-XML_XML_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:insertChildBefore-XML_XML_snc|trigger=button|text=}{sub-section}{sub-section:insertChildBefore-XML_XML_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:insertChildBefore-XML_XML_prs|trigger=button|text=}{sub-section}{sub-section:insertChildBefore-XML_XML_prs|trigger=none|class=sIndent}\{[XML]} childToInsertBefore
\{[XML]} childToInsert
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:insertChildBefore-XML_XML_ret|trigger=button|text=}{sub-section}{sub-section:insertChildBefore-XML_XML_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:insertChildBefore-XML_XML_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildBefore-XML_XML_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:insertChildBefore-XML_XML_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildBefore-XML_XML_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:insertChildBefore-XML_XML_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:insertChildBefore-XML_XML_sam|trigger=none}{code:language=javascript}
xml.insertChildBefore(childToInsertBefore, childToInsert)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=length|class=node}{tr:id=name}{td}h6.length{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Number]{span}{span:id=iets|style=float: left; font-weight: bold;}length{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:length_des|trigger=button|text=}{sub-section}{sub-section:length_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:length_snc|trigger=button|text=}{sub-section}{sub-section:length_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:length_prs|trigger=button|text=}{sub-section}{sub-section:length_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:length_ret|trigger=button|text=}{sub-section}{sub-section:length_ret|trigger=none|class=sIndent}[Number]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:length_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:length_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:length_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:length_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:length_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:length_sam|trigger=none}{code:language=javascript}
xml.length()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=localName|class=node}{tr:id=name}{td}h6.localName{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[String]{span}{span:id=iets|style=float: left; font-weight: bold;}localName{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:localName_des|trigger=button|text=}{sub-section}{sub-section:localName_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:localName_snc|trigger=button|text=}{sub-section}{sub-section:localName_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:localName_prs|trigger=button|text=}{sub-section}{sub-section:localName_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:localName_ret|trigger=button|text=}{sub-section}{sub-section:localName_ret|trigger=none|class=sIndent}[String]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:localName_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:localName_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:localName_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:localName_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:localName_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:localName_sam|trigger=none}{code:language=javascript}
xml.localName()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=name|class=node}{tr:id=name}{td}h6.name{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[QName]{span}{span:id=iets|style=float: left; font-weight: bold;}name{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:name_des|trigger=button|text=}{sub-section}{sub-section:name_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:name_snc|trigger=button|text=}{sub-section}{sub-section:name_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:name_prs|trigger=button|text=}{sub-section}{sub-section:name_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:name_ret|trigger=button|text=}{sub-section}{sub-section:name_ret|trigger=none|class=sIndent}[QName]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:name_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:name_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:name_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:name_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:name_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:name_sam|trigger=none}{code:language=javascript}
xml.name()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=namespace|class=node}{tr:id=name}{td}h6.namespace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Namespace]{span}{span:id=iets|style=float: left; font-weight: bold;}namespace{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:namespace_des|trigger=button|text=}{sub-section}{sub-section:namespace_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:namespace_snc|trigger=button|text=}{sub-section}{sub-section:namespace_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:namespace_prs|trigger=button|text=}{sub-section}{sub-section:namespace_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:namespace_ret|trigger=button|text=}{sub-section}{sub-section:namespace_ret|trigger=none|class=sIndent}[Namespace]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:namespace_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:namespace_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:namespace_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace_sam|trigger=none}{code:language=javascript}
xml.namespace([prefix])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=namespace-String|class=node}{tr:id=name}{td}h6.namespace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Namespace]{span}{span:id=iets|style=float: left; font-weight: bold;}namespace{span}{span:id=iets|style=float: left;}\(prefix){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:namespace-String_des|trigger=button|text=}{sub-section}{sub-section:namespace-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:namespace-String_snc|trigger=button|text=}{sub-section}{sub-section:namespace-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:namespace-String_prs|trigger=button|text=}{sub-section}{sub-section:namespace-String_prs|trigger=none|class=sIndent}\{[String]} prefix
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:namespace-String_ret|trigger=button|text=}{sub-section}{sub-section:namespace-String_ret|trigger=none|class=sIndent}[Namespace]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:namespace-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:namespace-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:namespace-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespace-String_sam|trigger=none}{code:language=javascript}
xml.namespace([prefix])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=namespaceDeclarations|class=node}{tr:id=name}{td}h6.namespaceDeclarations{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Array]{span}{span:id=iets|style=float: left; font-weight: bold;}namespaceDeclarations{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:namespaceDeclarations_des|trigger=button|text=}{sub-section}{sub-section:namespaceDeclarations_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:namespaceDeclarations_snc|trigger=button|text=}{sub-section}{sub-section:namespaceDeclarations_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:namespaceDeclarations_prs|trigger=button|text=}{sub-section}{sub-section:namespaceDeclarations_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:namespaceDeclarations_ret|trigger=button|text=}{sub-section}{sub-section:namespaceDeclarations_ret|trigger=none|class=sIndent}[Array]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:namespaceDeclarations_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespaceDeclarations_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:namespaceDeclarations_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespaceDeclarations_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:namespaceDeclarations_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:namespaceDeclarations_sam|trigger=none}{code:language=javascript}
xml.namespaceDeclarations()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=nodeKind|class=node}{tr:id=name}{td}h6.nodeKind{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[String]{span}{span:id=iets|style=float: left; font-weight: bold;}nodeKind{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:nodeKind_des|trigger=button|text=}{sub-section}{sub-section:nodeKind_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:nodeKind_snc|trigger=button|text=}{sub-section}{sub-section:nodeKind_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:nodeKind_prs|trigger=button|text=}{sub-section}{sub-section:nodeKind_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:nodeKind_ret|trigger=button|text=}{sub-section}{sub-section:nodeKind_ret|trigger=none|class=sIndent}[String]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:nodeKind_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:nodeKind_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:nodeKind_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:nodeKind_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:nodeKind_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:nodeKind_sam|trigger=none}{code:language=javascript}
xml.nodeKind()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=normalize|class=node}{tr:id=name}{td}h6.normalize{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}normalize{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:normalize_des|trigger=button|text=}{sub-section}{sub-section:normalize_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:normalize_snc|trigger=button|text=}{sub-section}{sub-section:normalize_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:normalize_prs|trigger=button|text=}{sub-section}{sub-section:normalize_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:normalize_ret|trigger=button|text=}{sub-section}{sub-section:normalize_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:normalize_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:normalize_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:normalize_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:normalize_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:normalize_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:normalize_sam|trigger=none}{code:language=javascript}
xml.normalize()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=parent|class=node}{tr:id=name}{td}h6.parent{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}parent{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:parent_des|trigger=button|text=}{sub-section}{sub-section:parent_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:parent_snc|trigger=button|text=}{sub-section}{sub-section:parent_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:parent_prs|trigger=button|text=}{sub-section}{sub-section:parent_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:parent_ret|trigger=button|text=}{sub-section}{sub-section:parent_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:parent_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:parent_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:parent_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:parent_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:parent_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:parent_sam|trigger=none}{code:language=javascript}
xml.parent()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=prependChild-XML|class=node}{tr:id=name}{td}h6.prependChild{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}prependChild{span}{span:id=iets|style=float: left;}\(childToPrepend){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:prependChild-XML_des|trigger=button|text=}{sub-section}{sub-section:prependChild-XML_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:prependChild-XML_snc|trigger=button|text=}{sub-section}{sub-section:prependChild-XML_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:prependChild-XML_prs|trigger=button|text=}{sub-section}{sub-section:prependChild-XML_prs|trigger=none|class=sIndent}\{[XML]} childToPrepend
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:prependChild-XML_ret|trigger=button|text=}{sub-section}{sub-section:prependChild-XML_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:prependChild-XML_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prependChild-XML_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:prependChild-XML_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prependChild-XML_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:prependChild-XML_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:prependChild-XML_sam|trigger=none}{code:language=javascript}
xml.prependChild(childToPrepend)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=processingInstructions|class=node}{tr:id=name}{td}h6.processingInstructions{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}processingInstructions{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:processingInstructions_des|trigger=button|text=}{sub-section}{sub-section:processingInstructions_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:processingInstructions_snc|trigger=button|text=}{sub-section}{sub-section:processingInstructions_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:processingInstructions_prs|trigger=button|text=}{sub-section}{sub-section:processingInstructions_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:processingInstructions_ret|trigger=button|text=}{sub-section}{sub-section:processingInstructions_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:processingInstructions_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:processingInstructions_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:processingInstructions_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions_sam|trigger=none}{code:language=javascript}
xml.processingInstructions([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=processingInstructions-String|class=node}{tr:id=name}{td}h6.processingInstructions{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}processingInstructions{span}{span:id=iets|style=float: left;}\(name){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:processingInstructions-String_des|trigger=button|text=}{sub-section}{sub-section:processingInstructions-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:processingInstructions-String_snc|trigger=button|text=}{sub-section}{sub-section:processingInstructions-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:processingInstructions-String_prs|trigger=button|text=}{sub-section}{sub-section:processingInstructions-String_prs|trigger=none|class=sIndent}\{[String]} name
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:processingInstructions-String_ret|trigger=button|text=}{sub-section}{sub-section:processingInstructions-String_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:processingInstructions-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:processingInstructions-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:processingInstructions-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:processingInstructions-String_sam|trigger=none}{code:language=javascript}
xml.processingInstructions([name])
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=propertyIsEnumerable-String|class=node}{tr:id=name}{td}h6.propertyIsEnumerable{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Boolean]{span}{span:id=iets|style=float: left; font-weight: bold;}propertyIsEnumerable{span}{span:id=iets|style=float: left;}\(propertyName){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:propertyIsEnumerable-String_des|trigger=button|text=}{sub-section}{sub-section:propertyIsEnumerable-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:propertyIsEnumerable-String_snc|trigger=button|text=}{sub-section}{sub-section:propertyIsEnumerable-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:propertyIsEnumerable-String_prs|trigger=button|text=}{sub-section}{sub-section:propertyIsEnumerable-String_prs|trigger=none|class=sIndent}\{[String]} propertyName
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:propertyIsEnumerable-String_ret|trigger=button|text=}{sub-section}{sub-section:propertyIsEnumerable-String_ret|trigger=none|class=sIndent}[Boolean]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:propertyIsEnumerable-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:propertyIsEnumerable-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:propertyIsEnumerable-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:propertyIsEnumerable-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:propertyIsEnumerable-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:propertyIsEnumerable-String_sam|trigger=none}{code:language=javascript}
xml.propertyIsEnumerable(propertyName)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=removeNamespace-Namespace|class=node}{tr:id=name}{td}h6.removeNamespace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}removeNamespace{span}{span:id=iets|style=float: left;}\(namespace){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:removeNamespace-Namespace_des|trigger=button|text=}{sub-section}{sub-section:removeNamespace-Namespace_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:removeNamespace-Namespace_snc|trigger=button|text=}{sub-section}{sub-section:removeNamespace-Namespace_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:removeNamespace-Namespace_prs|trigger=button|text=}{sub-section}{sub-section:removeNamespace-Namespace_prs|trigger=none|class=sIndent}\{[Namespace]} namespace
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:removeNamespace-Namespace_ret|trigger=button|text=}{sub-section}{sub-section:removeNamespace-Namespace_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:removeNamespace-Namespace_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:removeNamespace-Namespace_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:removeNamespace-Namespace_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:removeNamespace-Namespace_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:removeNamespace-Namespace_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:removeNamespace-Namespace_sam|trigger=none}{code:language=javascript}
xml.removeNamespace(namespace)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=replace-String_XML|class=node}{tr:id=name}{td}h6.replace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}replace{span}{span:id=iets|style=float: left;}\(propertyName, replacementValue){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:replace-String_XML_des|trigger=button|text=}{sub-section}{sub-section:replace-String_XML_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:replace-String_XML_snc|trigger=button|text=}{sub-section}{sub-section:replace-String_XML_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:replace-String_XML_prs|trigger=button|text=}{sub-section}{sub-section:replace-String_XML_prs|trigger=none|class=sIndent}\{[String]} propertyName
\{[XML]} replacementValue
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:replace-String_XML_ret|trigger=button|text=}{sub-section}{sub-section:replace-String_XML_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:replace-String_XML_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:replace-String_XML_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:replace-String_XML_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:replace-String_XML_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:replace-String_XML_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:replace-String_XML_sam|trigger=none}{code:language=javascript}
xml.replace(propertyName, replacementValue)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setChildren-Object|class=node}{tr:id=name}{td}h6.setChildren{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}setChildren{span}{span:id=iets|style=float: left;}\(value){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setChildren-Object_des|trigger=button|text=}{sub-section}{sub-section:setChildren-Object_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setChildren-Object_snc|trigger=button|text=}{sub-section}{sub-section:setChildren-Object_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:setChildren-Object_prs|trigger=button|text=}{sub-section}{sub-section:setChildren-Object_prs|trigger=none|class=sIndent}\{[Object]} value
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:setChildren-Object_ret|trigger=button|text=}{sub-section}{sub-section:setChildren-Object_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setChildren-Object_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setChildren-Object_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setChildren-Object_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setChildren-Object_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setChildren-Object_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setChildren-Object_sam|trigger=none}{code:language=javascript}
xml.setChildren(value)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setLocalName-String|class=node}{tr:id=name}{td}h6.setLocalName{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setLocalName{span}{span:id=iets|style=float: left;}\(name){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setLocalName-String_des|trigger=button|text=}{sub-section}{sub-section:setLocalName-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setLocalName-String_snc|trigger=button|text=}{sub-section}{sub-section:setLocalName-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:setLocalName-String_prs|trigger=button|text=}{sub-section}{sub-section:setLocalName-String_prs|trigger=none|class=sIndent}\{[String]} name
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:setLocalName-String_ret|trigger=button|text=}{sub-section}{sub-section:setLocalName-String_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setLocalName-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setLocalName-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setLocalName-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setLocalName-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setLocalName-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setLocalName-String_sam|trigger=none}{code:language=javascript}
xml.setLocalName(name)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setName-String|class=node}{tr:id=name}{td}h6.setName{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setName{span}{span:id=iets|style=float: left;}\(name){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setName-String_des|trigger=button|text=}{sub-section}{sub-section:setName-String_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setName-String_snc|trigger=button|text=}{sub-section}{sub-section:setName-String_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:setName-String_prs|trigger=button|text=}{sub-section}{sub-section:setName-String_prs|trigger=none|class=sIndent}\{[String]} name
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:setName-String_ret|trigger=button|text=}{sub-section}{sub-section:setName-String_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setName-String_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setName-String_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setName-String_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setName-String_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setName-String_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setName-String_sam|trigger=none}{code:language=javascript}
xml.setName(name)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setNamespace-Namespace|class=node}{tr:id=name}{td}h6.setNamespace{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setNamespace{span}{span:id=iets|style=float: left;}\(namespace){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setNamespace-Namespace_des|trigger=button|text=}{sub-section}{sub-section:setNamespace-Namespace_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setNamespace-Namespace_snc|trigger=button|text=}{sub-section}{sub-section:setNamespace-Namespace_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:setNamespace-Namespace_prs|trigger=button|text=}{sub-section}{sub-section:setNamespace-Namespace_prs|trigger=none|class=sIndent}\{[Namespace]} namespace
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:setNamespace-Namespace_ret|trigger=button|text=}{sub-section}{sub-section:setNamespace-Namespace_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setNamespace-Namespace_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setNamespace-Namespace_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setNamespace-Namespace_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setNamespace-Namespace_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setNamespace-Namespace_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setNamespace-Namespace_sam|trigger=none}{code:language=javascript}
xml.setNamespace(namespace)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setSettings|class=node}{tr:id=name}{td}h6.setSettings{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setSettings{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setSettings_des|trigger=button|text=}{sub-section}{sub-section:setSettings_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setSettings_snc|trigger=button|text=}{sub-section}{sub-section:setSettings_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:setSettings_prs|trigger=button|text=}{sub-section}{sub-section:setSettings_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:setSettings_ret|trigger=button|text=}{sub-section}{sub-section:setSettings_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setSettings_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setSettings_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setSettings_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings_sam|trigger=none}{code:language=javascript}
xml.setSettings(settings)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=setSettings-Object|class=node}{tr:id=name}{td}h6.setSettings{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setSettings{span}{span:id=iets|style=float: left;}\(settings){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:setSettings-Object_des|trigger=button|text=}{sub-section}{sub-section:setSettings-Object_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:setSettings-Object_snc|trigger=button|text=}{sub-section}{sub-section:setSettings-Object_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{tr:id=prs}{td}*Parameters*\\{sub-section:setSettings-Object_prs|trigger=button|text=}{sub-section}{sub-section:setSettings-Object_prs|trigger=none|class=sIndent}\{[Object]} settings -- The new settings that should be applied globally to the XML object.
{sub-section}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:setSettings-Object_ret|trigger=button|text=}{sub-section}{sub-section:setSettings-Object_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:setSettings-Object_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings-Object_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:setSettings-Object_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings-Object_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:setSettings-Object_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:setSettings-Object_sam|trigger=none}{code:language=javascript}
xml.setSettings(settings)
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=settings|class=node}{tr:id=name}{td}h6.settings{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[Object]{span}{span:id=iets|style=float: left; font-weight: bold;}settings{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:settings_des|trigger=button|text=}{sub-section}{sub-section:settings_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:settings_snc|trigger=button|text=}{sub-section}{sub-section:settings_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:settings_prs|trigger=button|text=}{sub-section}{sub-section:settings_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:settings_ret|trigger=button|text=}{sub-section}{sub-section:settings_ret|trigger=none|class=sIndent}[Object]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:settings_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:settings_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:settings_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:settings_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:settings_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:settings_sam|trigger=none}{code:language=javascript}
xml.settings()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=text|class=node}{tr:id=name}{td}h6.text{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XMLList]{span}{span:id=iets|style=float: left; font-weight: bold;}text{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:text_des|trigger=button|text=}{sub-section}{sub-section:text_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:text_snc|trigger=button|text=}{sub-section}{sub-section:text_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:text_prs|trigger=button|text=}{sub-section}{sub-section:text_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:text_ret|trigger=button|text=}{sub-section}{sub-section:text_ret|trigger=none|class=sIndent}[XMLList]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:text_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:text_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:text_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:text_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:text_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:text_sam|trigger=none}{code:language=javascript}
xml.text()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=toString|class=node}{tr:id=name}{td}h6.toString{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[String]{span}{span:id=iets|style=float: left; font-weight: bold;}toString{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:toString_des|trigger=button|text=}{sub-section}{sub-section:toString_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:toString_snc|trigger=button|text=}{sub-section}{sub-section:toString_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:toString_prs|trigger=button|text=}{sub-section}{sub-section:toString_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:toString_ret|trigger=button|text=}{sub-section}{sub-section:toString_ret|trigger=none|class=sIndent}[String]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:toString_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toString_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:toString_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toString_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:toString_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toString_sam|trigger=none}{code:language=javascript}
xml.toString()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=toXMLString|class=node}{tr:id=name}{td}h6.toXMLString{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[String]{span}{span:id=iets|style=float: left; font-weight: bold;}toXMLString{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:toXMLString_des|trigger=button|text=}{sub-section}{sub-section:toXMLString_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:toXMLString_snc|trigger=button|text=}{sub-section}{sub-section:toXMLString_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:toXMLString_prs|trigger=button|text=}{sub-section}{sub-section:toXMLString_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:toXMLString_ret|trigger=button|text=}{sub-section}{sub-section:toXMLString_ret|trigger=none|class=sIndent}[String]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:toXMLString_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toXMLString_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:toXMLString_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toXMLString_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:toXMLString_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:toXMLString_sam|trigger=none}{code:language=javascript}
xml.toXMLString()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=valueOf|class=node}{tr:id=name}{td}h6.valueOf{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}[XML]{span}{span:id=iets|style=float: left; font-weight: bold;}valueOf{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:valueOf_des|trigger=button|text=}{sub-section}{sub-section:valueOf_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=snc}{td}*Since*\\{sub-section:valueOf_snc|trigger=button|text=}{sub-section}{sub-section:valueOf_snc|trigger=none|class=sIndent} Replace with version info{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:valueOf_prs|trigger=button|text=}{sub-section}{sub-section:valueOf_prs|trigger=none|class=sIndent}{sub-section}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:valueOf_ret|trigger=button|text=}{sub-section}{sub-section:valueOf_ret|trigger=none|class=sIndent}[XML]{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:valueOf_see|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:valueOf_see|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:valueOf_link|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:valueOf_link|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:valueOf_sam|trigger=button|text=}{sub-section}{div:class=sIndent}{sub-section:valueOf_sam|trigger=none}{code:language=javascript}
xml.valueOf()
{code}{sub-section}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{table}