Web/API/Node

From Get docs

The [[../../../Glossary/DOM|DOM]] Node interface is an abstract base class upon which many other DOM API objects are based, thus letting those object types to be used similarly and often interchangeably. As an abstract class, there is no such thing as a plain Node object. All objects that implement Node functionality are based on one of its subclasses. Most notable are Document, Element, and DocumentFragment.

In addition, every kind of DOM node is represented by an interface based on Node. These include Attr, CharacterData (which Text, Comment, and CDATASection are all based on), ProcessingInstruction, DocumentType, Notation, Entity, and EntityReference.

In some cases, a particular feature of the base Node interface may not apply to one of its child interfaces; in that case, the inheriting node may return null or throw an exception, depending on circumstances. For example, attempting to add children to a node type that cannot have children will throw an exception.

Properties

In addition to the properties below, Node inherits properties from its parent, EventTarget.

Node.baseURIRead only
Returns a DOMString representing the base URL of the document containing the Node.
Node.childNodesRead only
Returns a live NodeList containing all the children of this node (including elements, text and comments). NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.
Node.firstChildRead only
Returns a Node representing the first direct child node of the node, or null if the node has no child.
Node.isConnectedRead only
A boolean indicating whether or not the Node is connected (directly or indirectly) to the context object, e.g. the Document object in the case of the normal DOM, or the ShadowRoot in the case of a shadow DOM.
Node.lastChildRead only
Returns a Node representing the last direct child node of the node, or null if the node has no child.
Node.nextSiblingRead only
Returns a Node representing the next node in the tree, or null if there isn't such node.
Node.nodeNameRead only
Returns a DOMString containing the name of the Node. The structure of the name will differ with the node type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.
Node.nodeTypeRead only
Returns an unsigned short representing the type of the node. Possible values are:
Name Value
ELEMENT_NODE 1
ATTRIBUTE_NODE  ' 2
TEXT_NODE 3
CDATA_SECTION_NODE 4
ENTITY_REFERENCE_NODE  ' 5
ENTITY_NODE  ' 6
PROCESSING_INSTRUCTION_NODE 7
COMMENT_NODE 8
DOCUMENT_NODE 9
DOCUMENT_TYPE_NODE 10
DOCUMENT_FRAGMENT_NODE 11
NOTATION_NODE  ' 12
Node.nodeValue
Returns / Sets the value of the current node.
Node.ownerDocumentRead only
Returns the Document that this node belongs to. If the node is itself a document, returns null.
Node.parentNodeRead only
Returns a Node that 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 returns null.
Node.parentElementRead only
Returns an Element that is the parent of this node. If the node has no parent, or if that parent is not an Element, this property returns null.
Node.previousSiblingRead only
Returns a Node representing the previous node in the tree, or null if there isn't such node.
Node.textContent
Returns / Sets the textual content of an element and all its descendants.

Obsolete properties

Node.localName  ' Read only
Returns a DOMString representing the local part of the qualified name of an element.

Note: 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.

Node.namespaceURI  ' Read only
The namespace URI of this node, or null if it is no namespace.

Note: In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml/ namespace in both HTML and XML trees.

Node.prefix  ' Read only
Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.

Methods

In addition to the properties below, Node inherits methods from its parent, EventTarget.

Node.appendChild(childNode)
Adds the specified childNode argument as the last child to the current node. If the argument referenced an existing node on the DOM tree, the node will be detached from its current position and attached at the new position.
Node.cloneNode()
Clone a Node, and optionally, all of its contents. By default, it clones the content of the node.
Node.compareDocumentPosition()
Compares the position of the current node against another node in any other document.
Node.contains()
Returns a Boolean value indicating whether or not a node is a descendant of the calling node.
Node.getBoxQuads() '
Returns a list of the node's CSS boxes relative to another node.
Node.getRootNode()
Returns the context object's root which optionally includes the shadow root if it is available. 
Node.hasChildNodes()
Returns a Boolean indicating whether or not the element has any child nodes.
Node.insertBefore()
Inserts a Node before the reference node as a child of a specified parent node.
Node.isDefaultNamespace()
Accepts a namespace URI as an argument and returns a Boolean with a value of true if the namespace is the default namespace on the given node or false if not.
Node.isEqualNode()
Returns a Boolean which indicates whether or not two nodes are of the same type and all their defining data points match.
Node.isSameNode()
Returns a Boolean value indicating whether or not the two nodes are the same (that is, they reference the same object).
Node.lookupPrefix()
Returns a DOMString containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.
Node.lookupNamespaceURI()
Accepts a prefix and returns the namespace URI associated with it on the given node if found (and null if not). Supplying null for the prefix will return the default namespace.
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 Node of the current one with the second one given in parameter.

Obsolete methods

Node.getUserData()  '
Allows a user to get some DOMUserData from the node.
Node.hasAttributes()  '
Returns a Boolean indicating if the element has any attributes, or not.
Node.isSupported()  '
Returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.
Node.setUserData()  '
Allows a user to attach, or remove, DOMUserData to the node.

Examples

Remove all children nested within a node

function removeAllChildren(element) {
  while (element.firstChild) {
    element.removeChild(element.firstChild)
  }
}

Sample usage

/* ... an alternative to document.body.innerHTML = "" ... */
removeAllChildren(document.body)

Recurse through child nodes

The following function recursively calls a callback function for each node contained by a root node (including the root itself):

function eachNode(rootNode, callback) {
    if (!callback) {
        const nodes = []
        eachNode(rootNode, function(node) {
            nodes.push(node)
        })
        return nodes
    }

    if (false === callback(rootNode)) {
        return false
    }

    if (rootNode.hasChildNodes()) {
        const nodes = rootNode.childNodes
        for (let i = 0, l = nodes.length; i < l; ++i) {
            if (false === eachNode(nodes[i], callback)) {
                return
            }
        }
    }
}

Syntax

eachNode(rootNode, callback)

Description

Recursively calls a function for each descendant node of rootNode (including the root itself).

If callback is omitted, the function returns an Array instead, which contains rootNode and all nodes contained within.

If callback is provided, and it returns Boolean false when called, the current recursion level is aborted, and the function resumes execution at the last parent's level. This can be used to abort loops once a node has been found (such as searching for a text node which contains a certain string).

Parameters

rootNode
The Node object whose descendants will be recursed through.
callback Optional
An optional callback function that receives a Node as its only argument. If omitted, eachNode returns an Array of every node contained within rootNode (including the root itself).

Sample usage

The following example prints the textContent properties of each <span> tag in a <div> element named "box":

<div id="box">
  <span>Foo</span>
  <span>Bar</span>
  <span>Baz</span>
</div>
const box = document.getElementById("box")
eachNode(box, function(node) {
  if (null != node.textContent) {
    console.log(node.textContent)
  }
})

The above will result in the following strings printing to the user's console:

"\n\t", "Foo", "\n\t", "Bar", "\n\t", "Baz"

Note: Whitespace forms part of a Text node, meaning indentation and newlines form separate Text between the Element nodes.


Realistic usage

The following demonstrates a real-world use of the eachNode() function: searching for text on a web-page.

We use a wrapper function named grep to do the searching:

function grep(parentNode, pattern) {
    const matches = []
    let endScan = false
    
    eachNode(parentNode, function(node){
        if (endScan) {
            return false
        }
        
        // Ignore anything which isn't a text node
        if (node.nodeType !== Node.TEXT_NODE) {
            return
        }

        if (typeof pattern === "string") {
            if (-1 !== node.textContent.indexOf(pattern)) {
                matches.push(node)
            }
        }
        else if (pattern.test(node.textContent)) {
            if (!pattern.global) {
                endScan = true
                matches = node
            }
            else {
                matches.push(node)
            }
        }
    })
    
    return matches
}

For example, to find Text nodes that contain typos:

const typos = ["teh", "adn", "btu", "adress", "youre", "msitakes"]
const pattern = new RegExp("\\b(" + typos.join("|") + ")\\b", "gi")
const mistakes = grep(document.body, pattern)
console.log(mistakes)

Specifications

Specification Status Comment
DOMThe definition of 'Node' in that specification. Living Standard Added the following methods: getRootNode()
DOM4The definition of 'Node' in that specification. Obsolete 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 SpecificationThe definition of 'Node' in that specification. Obsolete 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 SpecificationThe definition of 'Node' in that specification. Obsolete 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 SpecificationThe definition of 'Node' in that specification. Obsolete Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
Node

Chrome Full support 1

Notes'

Full support 1

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5

Opera Full support 7

Notes'

Full support 7

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Safari Full support 1.1

Notes'

Full support 1.1

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

WebView Android Full support 1

Notes'

Full support 1

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Chrome Android Full support 18

Notes'

Full support 18

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Firefox Android

Full support 4

Opera Android Full support 10.1

Notes'

Full support 10.1

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Safari iOS Full support 1

Notes'

Full support 1

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

Samsung Internet Android Full support 1.0

Notes'

Full support 1.0

Notes'

Notes' WebKit and old versions of Blink incorrectly do not make Node inherit from EventTarget.

appendChild Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

baseURI Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support 1

IE

No support No

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 4

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

baseURIObject

Deprecated'Non-standard'

Chrome

?

Edge

?

Firefox

?

IE

?

Opera

?

Safari

?

WebView Android

?

Chrome Android

?

Firefox Android

?

Opera Android

?

Safari iOS

?

Samsung Internet Android

?

childNodes Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5

Opera

Full support 7

Safari

Full support 1.2

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

cloneNode Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 6

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

compareDocumentPosition Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support 9

IE Full support 9

Notes'

Full support 9

Notes'

Notes' Only supports contains for elements

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 9

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

contains Chrome

Full support 16

Edge

Full support 12

Firefox

Full support 9

IE Partial support 9

Notes'

Partial support 9

Notes'

Notes' Only supported for HTMLElement, not all Node objects.

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support ≤37

Chrome Android

Full support 18

Firefox Android

Full support 9

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

firstChild Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support 1

IE

Full support Yes

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 4

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

getFeature

Deprecated'Non-standard'

Chrome

No support No

Edge

No support No

Firefox

No support No

IE

No support No

Opera

?

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support No

Opera Android

?

Safari iOS

No support No

Samsung Internet Android

No support No

getRootNode Chrome

Full support 54

Edge

Full support 79

Firefox

Full support 53

IE

No support No

Opera

Full support 41

Safari

Full support 10.1

WebView Android

Full support 54

Chrome Android

Full support 54

Firefox Android

Full support 53

Opera Android

Full support 41

Safari iOS

Full support 10.3

Samsung Internet Android

Full support 6.0

getUserData

Deprecated'Non-standard'

Chrome

No support No

Edge

No support No

Firefox

No support 1 — 22

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support 4 — 22

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

No support No

hasAttributes

Deprecated'Non-standard'

Chrome

No support No

Edge

No support 12 — 79

Firefox

No support No

IE

?

Opera

?

Safari

?

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support No

Opera Android

?

Safari iOS

?

Samsung Internet Android

No support No

hasChildNodes Chrome

Full support 1

Edge

Full support 12

Firefox

Full support Yes

IE

Full support 9

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

insertBefore Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 3

IE

Full support 9

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

isConnected Chrome

Full support 51

Edge

Full support 79

Firefox

Full support 53

IE

No support No

Opera

Full support 38

Safari

Full support 10

WebView Android

Full support 51

Chrome Android

Full support 51

Firefox Android

Full support 45

Opera Android

Full support 41

Safari iOS

Full support 10

Samsung Internet Android

Full support 6.0

isDefaultNamespace Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

isEqualNode Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 2

IE

Full support 9

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 4

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

isSameNode Chrome

Full support Yes

Edge

Full support 12

Firefox Full support 48


Full support 48


No support 1 — 10


IE

?

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android Full support 48


Full support 48


No support 4 — 10


Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

isSupported Chrome

No support No

Edge

No support No

Firefox

No support 1 — 22

IE

?

Opera

?

Safari

No support ≤4 — 10

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support 4 — 22

Opera Android

?

Safari iOS

No support 1 — 10

Samsung Internet Android

No support No

lastChild Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support 1

IE

Full support Yes

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 45

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

localName

Deprecated'Non-standard'

Chrome No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Edge No support 12 — 79

Notes'

No support 12 — 79

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Firefox No support 1 — 48

Notes'

No support 1 — 48

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

IE

?

Opera

?

Safari

?

WebView Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Chrome Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Firefox Android

Full support 45

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android No support ? — 5.0

Notes'

No support ? — 5.0

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

lookupNamespaceURI Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

lookupPrefix Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

namespaceURI

Deprecated'Non-standard'

Chrome No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Edge No support 12 — 79

Notes'

No support 12 — 79

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Firefox No support 1 — 48

Notes'

No support 1 — 48

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

IE

?

Opera

?

Safari

?

WebView Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Chrome Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Firefox Android

Full support 45

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android No support ? — 5.0

Notes'

No support ? — 5.0

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

nextSibling Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5.5

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

nodeName Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

nodePrincipal

Experimental'Non-standard'

Chrome No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Edge

?

Firefox

?

IE

?

Opera

?

Safari

?

WebView Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Chrome Android No support ? — 46

Notes'

No support ? — 46

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

Firefox Android

?

Opera Android

?

Safari iOS

?

Samsung Internet Android No support ? — 5.0

Notes'

No support ? — 5.0

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard.

nodeType Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 6

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

nodeValue Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

normalize Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

?

Opera

Full support Yes

Safari

Full support ≤4

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 1

Samsung Internet Android

Full support Yes

ownerDocument Chrome

Full support Yes

Edge

Full support 12

Firefox Full support Yes


Full support Yes


Full support 9

Notes'

Notes' The ownerDocument of doctype nodes (that is, nodes for which Node.nodeType is Node.DOCUMENT_TYPE_NODE or 10) is no longer null. Instead, the ownerDocument is the document on which document.implementation.createDocumentType() was called.

IE

Full support 9

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android Full support Yes


Full support Yes


Full support 9

Notes'

Notes' The ownerDocument of doctype nodes (that is, nodes for which Node.nodeType is Node.DOCUMENT_TYPE_NODE or 10) is no longer null. Instead, the ownerDocument is the document on which document.implementation.createDocumentType() was called.

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

parentElement Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 9

IE Full support 9

Notes'

Full support 9

Notes'

Notes' Only supported on Element.

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 9

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

parentNode Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5.5

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

prefix

Deprecated'Non-standard'

Chrome

No support No

Edge

No support 12 — 79

Firefox No support 1 — 48

Notes'

No support 1 — 48

Notes'

Notes' This API was moved to the Element and Attr APIs according to the DOM4 standard. Full support 5

Notes'

Notes' this property was read-write; starting with Firefox 5.0 it is read-only, following the specification.

IE Full support Yes

Notes'

Full support Yes

Notes'

Notes' Only supported on Element.

Opera

No support No

Safari

Full support Yes

WebView Android

No support No

Chrome Android

No support No

Firefox Android

Full support 9

Opera Android

No support No

Safari iOS

?

Samsung Internet Android

No support No

previousSibling Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support Yes

IE

Full support 5.5

Opera

Full support Yes

Safari

Full support 7

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

Full support 7

Samsung Internet Android

Full support Yes

removeChild Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 5

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

replaceChild Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 9

Opera

Full support 7

Safari

Full support 1.1

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

rootNode

Deprecated'Non-standard'

Chrome

No support No

Edge

No support No

Firefox

No support No

IE

?

Opera

No support No

Safari

?

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support No

Opera Android

No support No

Safari iOS

?

Samsung Internet Android

No support No

setUserData

Deprecated'Non-standard'

Chrome

No support No

Edge

No support No

Firefox

No support 1 — 22

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android

No support 4 — 22

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

No support No

textContent Chrome

Full support 1

Edge

Full support 12

Firefox

Full support 1

IE

Full support 9

Opera

Full support 9

Safari

Full support 3

WebView Android

Full support 1

Chrome Android

Full support 18

Firefox Android

Full support 4

Opera Android

Full support 10.1

Safari iOS

Full support 1

Samsung Internet Android

Full support 1.0

Legend

Full support  
Full support
Partial support  
Partial support
No support  
No support
Compatibility unknown  
Compatibility unknown
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.
Deprecated. Not for use in new websites.'
Deprecated. Not for use in new websites.
See implementation notes.'
See implementation notes.


Node by Mozilla Contributors is licensed under CC-BY-SA 2.5.