A Node is an interface from which a number of DOM types inherit, and allows these various types to be treated (or tested) similarly.
The following interfaces all inherit from Node its methods and properties: Document, Element, CharacterData (which Text, Comment, and CDATASection inherit), ProcessingInstruction, DocumentFragment, DocumentType, Notation, Entity, EntityReference
These interfaces may return null in particular cases where the methods and properties are not relevant. They may throw an exception - for example when adding children to a node type for which no children can exist.
Properties
Inherits properties from its parents EventTarget.[1]
Node.baseURIRead only- Returns a
DOMStringrepresenting the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last'/'. Node.baseURIObject- (Not available to web content.) The read-only
nsIURIobject representing the base URI for the element. Node.childNodesRead only- Returns a live
NodeListcontaining all the children of this node.NodeListbeing live means that if the children of theNodechange, theNodeListobject is automatically updated. Node.firstChildRead only- Returns a
Noderepresenting the first direct child node of the node, ornullif the node has no child. Node.lastChildRead only- Returns a
Noderepresenting the last direct child node of the node, ornullif the node has no child. Node.localNameRead only- Returns a
DOMStringrepresenting the local part of the qualified name of an element. In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML.
Though recent specifications requirelocalNameto be defined on theElementinterface, Gecko-based browsers still implement it on theNodeinterface. Node.namespaceURIRead only- The namespace URI of this node, or
nullif it is no namespace. In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in thehttp://www.w3.org/1999/xhtmlnamespace in both HTML and XML trees.
Though recent specifications requirenamespaceURIto be defined on theElementinterface, Gecko-based browsers still implement it on theNodeinterface. Node.nextSiblingRead only- Returns a
Noderepresenting the next node in the tree, ornullif there isn't such node. Node.nodeNameRead only- Returns a
DOMStringcontaining the name of theNode. The structure of the name will differ with the name type. E.g. AnHTMLElementwill contain the name of the corresponding tag, like'audio'for anHTMLAudioElement, aTextnode will have the'#text'string, or aDocumentnode will have the'#document'string. Node.nodePrincipal- A
nsIPrincipalrepresenting the node principal. Node.nodeTypeRead only- Returns an
unsigned shortrepresenting the type of the node. Possible values are:Name Value ELEMENT_NODE1ATTRIBUTE_NODE2TEXT_NODE3CDATA_SECTION_NODE4ENTITY_REFERENCE_NODE5ENTITY_NODE6PROCESSING_INSTRUCTION_NODE7COMMENT_NODE8DOCUMENT_NODE9DOCUMENT_TYPE_NODE10DOCUMENT_FRAGMENT_NODE11NOTATION_NODE12 Node.nodeValue- Is a
DOMStringrepresenting the value of an object. For mostNodetypes, this returnsnulland any set operation is ignored. For nodes of typeTEXT_NODE(Textobjects),COMMENT_NODE(Commentobjects), andPROCESSING_INSTRUCTION_NODE(ProcessingInstructionobjects), the value corresponds to the text data contained in the object. Node.ownerDocumentRead only- Returns the
Documentthat this node belongs to. If no document is associated with it, returnsnull. Node.parentNodeRead only- Returns a
Nodethat is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returnsnull. Node.parentElementRead only- Returns an
Elementthat is the parent of this node. If the node has no parent, or if that parent is not anElement, this property returnsnull. Node.prefixRead only- Is a
DOMStringrepresenting the namespace prefix of the node, ornullif no prefix is specified.
Though recent specifications requireprefixto be defined on theElementinterface, Gecko-based browsers still implement it on theNodeinterface. Node.previousSiblingRead only- Returns a
Noderepresenting the previous node in the tree, ornullif there isn't such node. Node.rootNodeRead only- Returns a
Nodeobject representing the topmost node in the tree, or the current node if it's the topmost node in the tree. This is found by walking backward alongNode.parentNodeuntil the top is reached. Node.textContent- Is a
DOMStringrepresenting the textual content of an element and all its descendants.
Methods
Inherits methods from its parent, EventTarget.[1]
Node.appendChild()- Insert a
Nodeas the last child node of this element. Node.cloneNode()- Clone a
Node, and optionally, all of its contents. By default, it clones the content of the node. Node.compareDocumentPosition()Node.contains()Node.getFeature()Node.getUserData()- Allows a user to get some
DOMUserDatafrom the node. Node.hasAttributes()- Returns a
Booleanindicating if the element has any attributes, or not. Node.hasChildNodes()- Returns a
Booleanindicating if the element has any child nodes, or not. Node.insertBefore()- Inserts the first
Nodegiven in a parameter immediately before the second, child of this element,Node. Node.isDefaultNamespace()Node.isEqualNode()- Returns a
Booleanwhich indicates whether or not two nodes are of the same type and all their defining data points match. Node.isSameNode()- Returns a
Booleanvalue indicating whether or not the two nodes are the same (that is, they reference the same object). Node.isSupported()- Returns a
Booleanflag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node. Node.lookupPrefix()Node.lookupNamespaceURI()Node.normalize()- Clean up all the text nodes under this element (merge adjacent, remove empty).
Node.removeChild()- Removes a child node from the current element, which must be a child of the current node.
Node.replaceChild()- Replaces one child
Nodeof the current one with the second one given in parameter. Node.setUserData()- Allows a user to attach, or remove,
DOMUserDatato the node.
Examples
Browse all child nodes
The following function recursively cycles all child nodes of a node and executes a callback function upon them (and upon the parent node itself).
function DOMComb (oParent, oCallback) {
if (oParent.hasChildNodes()) {
for (var oNode = oParent.firstChild; oNode; oNode = oNode.nextSibling) {
DOMComb(oNode, oCallback);
}
}
oCallback.call(oParent);
}
Syntax
DOMComb(parentNode, callbackFunction);
Description
Recursively cycle all child nodes of parentNode and parentNode itself and execute the callbackFunction upon them as this objects.
Parameters
Sample usage
The following example send to the console.log the text content of the body:
function printContent () {
if (this.nodeValue) { console.log(this.nodeValue); }
}
onload = function () {
DOMComb(document.body, printContent);
};
Remove all children nested within a node
Element.prototype.removeAll = function () {
while (this.firstChild) { this.removeChild(this.firstChild); }
return this;
};
Sample usage
/* ... an alternative to document.body.innerHTML = "" ... */ document.body.removeAll();
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Node' in that specification. |
Living Standard | Removed the following properties: attributes, namespaceURI, prefix, and localName.Removed the following methods: isSupported(), hasAttributes(), getFeature(), setUserData(), and getUserData(). |
| Document Object Model (DOM) Level 3 Core Specification The definition of 'Node' in that specification. |
Recommendation | The methods insertBefore(), replaceChild(), removeChild(), and appendChild() returns one more kind of error (NOT_SUPPORTED_ERR) if called on a Document.The normalize() method has been modified so that Text node can also be normalized if the proper DOMConfiguration flag is set.Added the following methods: compareDocumentPosition(), isSameNode(), lookupPrefix(), isDefaultNamespace(), lookupNamespaceURI(), isEqualNode(), getFeature(), setUserData(), and getUserData().Added the following properties: baseURI and textContent. |
| Document Object Model (DOM) Level 2 Core Specification The definition of 'Node' in that specification. |
Recommendation | The ownerDocument property was slightly modified so that DocumentFragment also returns null.Added the following properties: namespaceURI, prefix, and localName.Added the following methods: normalize(), isSupported() and hasAttributes(). |
| Document Object Model (DOM) Level 1 Specification The definition of 'Node' in that specification. |
Recommendation | Initial definition |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes)[1] | 1.0 (1.7 or earlier) | (Yes) | (Yes)[1] | (Yes)[1] |
getFeature() |
No support | 1.0 (1.7 or earlier) No support7.0 (7.0) |
? | No support | No support |
getUserData(), setUserData() and hasAttributes() |
No support | 1.0 (1.7 or earlier) No support22.0 (22.0) |
? | No support | No support |
isSameNode() |
No support | 1.0 (1.7 or earlier) Removed in 10 (10) Returned in 48 (48) |
? | No support | No support |
isSupported() |
? | 1.0 (1.7 or earlier) No support22.0 (22.0) |
? | ? | ? |
attributes |
No support | 1.0 (1.7 or earlier) No support22.0 (22.0)[2] |
No support | No support | No support |
rootNode() |
? | CompatGeckoDesktop(48)}} | ? | ? | ? |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Yes)[1] | 1.0 (1.0) | (Yes) | (Yes)[1] | (Yes)[1] |
getFeature() |
No support | 1.0 (1.0) No support7.0 (7.0) |
? | No support | No support |
getUserData(), setUserData() and hasAttributes() |
? | ? | ? | ? | ? |
isSameNode() |
? | ? | ? | ? | |
isSupported() |
? | ? | ? | ? | ? |
attributes |
? | ? | ? | ? | ? |
rootNode() |
? | 48.0 (48) | ? | ? | ? |
[1] WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.
[2] In Gecko 22.0 (Firefox 22.0 / Thunderbird 22.0 / SeaMonkey 2.19) the attributes property was moved to Element.