For the complete list of functions and categories in this namespace, refer to the main functions page.
Function name | Description |
---|---|
XMLDocument.documentURI | The URI of this document. |
XMLDocument.getElementById | Get the element in this document with the given id, if any. |
XMLNode.attributes | The attributes of this node. |
XMLNode.baseURI | This is inherited from the Node object. Returns a string representing the base URI of the node. |
XMLNode.childNodes | The children of this node. |
XMLNode.firstChild | The first child of this node, if any. |
XMLNode.hasAttributes | Whether this node has attributes. |
XMLNode.hasChildNodes | Whether this node has any children. |
XMLNode.isEqualNode | Whether this node is equal to another node. |
XMLNode.isSameNode | Whether this node is the same exact node as another node. |
XMLNode.lastChild | The last child of this node, if any. |
XMLNode.localName | Return the local name of this node. |
XMLNode.namespaceURI | Return the namespace URI of this node. |
XMLNode.nextSibling | The node that is the immediately following sibling of this node, if any. |
XMLNode.nodeKind | This is inherited from the Node object. Return a string indicating the type of the node. |
XMLNode.nodeName | The DOM name of the node. |
XMLNode.nodeType | This is inherited from the Node object. Return the DOM code indicating the type of the node. |
XMLNode.nodeValue | The DOM value of the node. |
XMLNode.ownerDocument | The document node containing this node, if any. |
XMLNode.parentNode | The node that is this node's parent. |
XMLNode.prefix | Return the namespace prefix of this node. |
XMLNode.previousSibling | The node that is the immediately preceding sibling of this node, if any. |
XMLNode.textContent | The DOM text value of the node. |
XMLNode.xpath | This is inherited from the Node object. Evaluate an XPath using the node as context. |