appendChild(Node newChild) | Appends a new child node to the end of the list of children of a node |
cloneNode(boolean deep) | Create a duplicate node, when overridden in a derived class. It returns the duplicated node. |
compareDocumentPosition(Node other) | Compares the placement of two nodes in the DOM hierarchy (document) |
getFeature(DOMString feature, DOMString version) | Returns a DOM object which implements the specialized APIs of the specified feature and version |
getUserData(DOMString key) | Returns the object associated to a key on a this node. The object must first have been set to this node by calling setUserData with the same key |
hasAttributes() | Returns true if the specified node has any attributes, otherwise false |
hasChildNodes() | Returns true if the specified node has any child nodes, otherwise false |
insertBefore(Node newChild, Node refChild) | Inserts a new child node before an existing child node |
isDefaultNamespace(DOMString namespaceURI) | Returns whether the specified namespaceURI is the default |
isEqualNode(Node arg) | Tests whether two nodes are equal |
isSameNode(Node other) | Tests whether the two nodes are the same node |
isSupported(DOMString feature, DOMString version) | Returns whether the specified DOM module is supported by the current node. Returns true if the specified feature is supported on this node, false otherwise. |
lookupNamespaceURI(DOMString prefix) | Returns the namespace URI associated with a given prefix |
lookupPrefix(DOMString namespaceURI) | Returns the prefix associated with a given namespace URI |
normalize() | Puts all Text nodes underneath a node (including attribute nodes) into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes |
removeChild(Node oldChild) | Removes a specified child node from the current node |
replaceChild(Node newChild, Node oldChild) | Replaces a child node with a new node |
setUserData(key,data,handler) | Associates an object to a key on a node |