Node is an interface from which a number of DOM API object types inherit. It allows those types to be treated similarly; for example, inheriting the same set of methods, or being tested in the same way.
The following interfaces all inherit from Node’s methods and properties: Document, Element, Attr, CharacterData (which Text, Comment, and CDATASection inherit), ProcessingInstruction, DocumentFragment, DocumentType, Notation, Entity, EntityReference
These interfaces may return null in certain 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.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 11.666666666666666%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 70" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget" target="_top"><rect x="1" y="1" width="110" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="56" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">EventTarget</text></a><polyline points="111,25 121,20 121,30 111,25" stroke="#D4DDE4" fill="none"/><line x1="121" y1="25" x2="151" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/Node" target="_top"><rect x="151" y="1" width="75" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="188.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Node</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Properties
Inherits properties from its parent, 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.isConnectedRead only- Returns a boolean indicating whether or not the Node is connected (directly or indirectly) to the context object, e.g. the
Documentobject in the case of the normal DOM, or theShadowRootin the case of a shadow DOM. Node.lastChildRead only- Returns a
Noderepresenting the last direct child node of the node, ornullif the node has no child. 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 node 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.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- Returns / Sets the value of the current node
Node.ownerDocumentRead only- Returns the
Documentthat this node belongs to. If the node is itself a document, 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.previousSiblingRead only- Returns a
Noderepresenting the previous node in the tree, ornullif there isn't such node. Node.textContent- Returns / Sets the textual content of an element and all its descendants.
Obsolete properties
Node.localNameRead only- Returns a
DOMStringrepresenting 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.namespaceURIRead only- The namespace URI of this node, or
nullif 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.nodePrincipalObsolete since Gecko 46- A
nsIPrincipalrepresenting the node principal. Node.prefixRead only- Is a
DOMStringrepresenting the namespace prefix of the node, ornullif no prefix is specified. 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 has been replaced byNode.getRootNode().
Methods
Inherits methods from its parent, EventTarget.[1]
Node.appendChild()- 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
Booleanvalue indicating whether a node is a descendant of a given node or not. Node.getRootNode()- Returns the context object's root which optionally includes the shadow root if it is available.
Node.hasChildNodes()- Returns a
Booleanindicating if the element has any child nodes, or not. Node.insertBefore()- Inserts a
Nodebefore the reference node as a child of a specified parent node. Node.isDefaultNamespace()- Accepts a namespace URI as an argument and returns a
Booleanwith a value oftrueif the namespace is the default namespace on the given node orfalseif not. 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.lookupPrefix()- Returns a
DOMStringcontaining the prefix for a given namespace URI, if present, andnullif 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
nullif not). Supplyingnullfor 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
Nodeof the current one with the second one given in parameter.
Obsolete methods
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.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.setUserData()- Allows a user to attach, or remove,
DOMUserDatato 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 calls a function recursively for each node contained by a root node (including the root itself):
function eachNode(rootNode, callback){
if(!callback){
var nodes = [];
eachNode(rootNode, function(node){
nodes.push(node);
});
return nodes;
}
if(false === callback(rootNode))
return false;
if(rootNode.hasChildNodes()){
var nodes = rootNode.childNodes;
for(var 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 therein.
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 that contains a certain string).
Parameters
rootNode- The
Nodeobject whose descendants will be recursed through. callback- An optional callback function that receives a
Nodeas its only argument. If omitted,eachNodereturns anArrayof every node contained withinrootNode(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>
var box = document.getElementById("box");
eachNode(box, function(node){
if(null != node.textContent){
console.log(node.textContent);
}
});
The following strings will be displayed in 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){
var matches = [];
var 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("string" === typeof pattern){
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:
var typos = ["teh", "adn", "btu", "adress", "youre", "msitakes"];
var pattern = new RegExp("\\b(" + typos.join("|") + ")\\b", "gi");
var mistakes = grep(document.body, pattern);
console.log(mistakes);
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Node' in that specification. |
Living Standard | Added the following methods: getRootNode() |
| DOM4 The 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 Specification The 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 Specification The 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 Specification The definition of 'Node' in that specification. |
Obsolete | Initial definition. |
Browser compatibility
| Desktop | Mobile | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Node | Chrome
Full support
Yes
| Edge Full support Yes | Firefox Full support 1 | IE Full support 9 | Opera
Full support
Yes
| Safari
Full support
Yes
| WebView Android
Full support
Yes
| Chrome Android
Full support
Yes
| Edge Mobile ? | Firefox Android Full support 4 | Opera Android
Full support
Yes
| Safari iOS
Full support
Yes
| Samsung Internet Android Full support Yes |
appendChild | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
baseURI | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE ? | Opera ? | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support 4 | Opera Android ? | Safari iOS ? | Samsung Internet Android Full support Yes |
baseURIObject | Chrome ? | Edge ? | Firefox ? | IE ? | Opera ? | Safari ? | WebView Android ? | Chrome Android ? | Edge Mobile ? | Firefox Android ? | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
childNodes | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
cloneNode | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
compareDocumentPosition | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 9 | IE
Full support
9
| Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 9 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
contains | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE
Full support
9
| Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
firstChild | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
getFeature | Chrome No support No | Edge ? | Firefox No support No | IE ? | Opera ? | Safari ? | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support No | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
getRootNode | Chrome Full support 54 | Edge No support No | 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 | Edge Mobile No support No | Firefox Android Full support 53 | Opera Android Full support 41 | Safari iOS Full support 10.1 | Samsung Internet Android ? |
getUserData | Chrome No support No | Edge ? | Firefox No support 1 — 22 | IE ? | Opera No support No | Safari No support No | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support 4 — 22 | Opera Android No support No | Safari iOS No support No | Samsung Internet Android ? |
hasAttributes | Chrome No support No | Edge Full support 12 | Firefox No support No | IE ? | Opera ? | Safari ? | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support No | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
hasChildNodes | Chrome Full support 1 | Edge Full support 12 | Firefox Full support Yes | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
insertBefore | Chrome Full support 1 | Edge Full support 12 | Firefox Full support 3 | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support 1 | Chrome Android Full support 18 | Edge Mobile Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
isConnected | Chrome Full support 51 | Edge No support No | Firefox Full support 53 | IE No support No | Opera Full support 38 | Safari Full support 10.1 | WebView Android Full support 51 | Chrome Android Full support 51 | Edge Mobile No support No | Firefox Android Full support 45 | Opera Android Full support 38 | Safari iOS Full support 10.1 | Samsung Internet Android Full support 6.0 |
isDefaultNamespace | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
isEqualNode | Chrome Full support 1 | Edge Full support 12 | Firefox Full support 2 | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
isSameNode | Chrome Full support Yes | Edge Full support 12 | Firefox
Full support
48
| IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android
Full support
48
| Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
isSupported | Chrome No support No | Edge ? | Firefox No support 1 — 22 | IE ? | Opera ? | Safari ? | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support 4 — 22 | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
lastChild | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support 45 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
localName | Chrome
No support
? — 46
| Edge Full support 12 | Firefox
No support
1 — 48
| IE ? | Opera ? | Safari ? | WebView Android
No support
? — 46
| Chrome Android
No support
? — 46
| Edge Mobile Full support Yes | Firefox Android Full support 45 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
lookupPrefix | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
lookupNamespaceURI | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
namespaceURI | Chrome
No support
? — 46
| Edge Full support 12 | Firefox
No support
1 — 48
| IE ? | Opera ? | Safari ? | WebView Android
No support
? — 46
| Chrome Android
No support
? — 46
| Edge Mobile Full support Yes | Firefox Android Full support 45 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
nextSibling | Chrome Full support Yes | Edge Full support 12 | Firefox ? | IE ? | Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android ? | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
nodeName | Chrome Full support Yes | Edge Full support 12 | Firefox ? | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android ? | Opera Android ? | Safari iOS ? | Samsung Internet Android Full support Yes |
nodePrincipal | Chrome
No support
? — 46
| Edge ? | Firefox ? | IE ? | Opera ? | Safari ? | WebView Android
No support
? — 46
| Chrome Android
No support
? — 46
| Edge Mobile ? | Firefox Android ? | Opera Android ? | Safari iOS ? | Samsung Internet Android Full support Yes |
nodeType | Chrome Full support Yes | Edge Full support 12 | Firefox ? | IE ? | Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android ? | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
nodeValue | Chrome Full support Yes | Edge Full support 12 | Firefox ? | IE ? | Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android ? | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
normalize | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
outerText | Chrome No support No | Edge ? | Firefox ? | IE ? | Opera No support No | Safari ? | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android ? | Opera Android No support No | Safari iOS ? | Samsung Internet Android No support No |
ownerDocument | Chrome Full support Yes | Edge Full support 12 | Firefox
Full support
Yes
| IE
Full support
9
| Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android
Full support
Yes
| Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
parentElement | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 9 | IE
Full support
Yes
| Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 9 | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
parentNode | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
prefix | Chrome No support No | Edge Full support 12 | Firefox
No support
1 — 48
| IE
Full support
Yes
| Opera No support No | Safari Full support Yes | WebView Android No support No | Chrome Android No support No | Edge Mobile Full support Yes | 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 ? | IE ? | Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android ? | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
removeChild | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE ? | Opera ? | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile ? | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
replaceChild | Chrome Full support 1 | Edge Full support 12 | Firefox Full support 1 | IE Full support 9 | Opera Full support 2 | Safari Full support Yes | WebView Android Full support 1 | Chrome Android Full support 18 | Edge Mobile Full support Yes | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android ? |
rootNode | Chrome No support No | Edge ? | Firefox No support No | IE ? | Opera No support No | Safari ? | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support No | Opera Android No support No | Safari iOS ? | Samsung Internet Android No support No |
setUserData | Chrome No support No | Edge ? | Firefox No support 1 — 22 | IE ? | Opera No support No | Safari No support No | WebView Android No support No | Chrome Android No support No | Edge Mobile ? | Firefox Android No support 4 — 22 | Opera Android No support No | Safari iOS No support No | Samsung Internet Android ? |
textContent | Chrome Full support Yes | Edge Full support 12 | Firefox Full support 1 | IE Full support Yes | Opera Full support Yes | Safari Full support 3 | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 4 | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full 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.