Document.replaceChildren()
The Document.replaceChildren() method replaces the existing children of a Document with a specified new set of children.
Syntax
replaceChildren(...nodesOrDOMStrings)
Parameters
nodesOrDOMStrings-
A set of
NodeorDOMStringobjects to replace theDocument's existing children with. If no replacement objects are specified, then theDocumentis emptied of all child nodes.
Exceptions
-
HierarchyRequestErrorDOMException -
Thrown if the constraints of the node tree are violated.
Examples
Emptying a document
replaceChildren() provides a very convenient mechanism for emptying a document of all its children. You call it on the document without any argument specified:
document.replaceChildren(); document.children; // HTMLCollection []
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
replaceChildren |
86 |
86 |
78 |
No |
72 |
14 |
86 |
86 |
79 |
61 |
14 |
14.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Document/replaceChildren