Document.replaceChildren()
The Document.replaceChildren()
method replaces the
existing children of a Document
with a specified new set of children.
Syntax
replaceChildren(...nodesOrDOMStrings)
Parameters
Exceptions
HierarchyRequestError
DOMException
-
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
Specification |
---|
DOM Standard # ref-for-dom-parentnode-replacechildrenā |
Browser compatibility
BCD tables only load in the browser