web api instance method
Document: replaceChildren() method
The Document.replaceChildren() method replaces the
existing children of a Document with a specified new set of children.
Syntax
replaceChildren(param1)
replaceChildren(param1, param2)
replaceChildren(param1, param2, /* …, */ paramN)
Parameters
param1, …,paramN- : A set of
Nodeobjects or strings to replace theDocument’s existing children with. If no replacement objects are specified, then theDocumentis emptied of all child nodes.
- : A set of
Return value
None (undefined).
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
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.