Document: replaceChildren() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The Document.replaceChildren() method replaces the existing children of a Document with a specified new set of children.

Syntax

js
replaceChildren(param1)
replaceChildren(param1, param2)
replaceChildren(param1, param2, /* …, */ paramN)

Parameters

param1, …, paramN

A set of Node objects or strings to replace the Document's existing children with. If no replacement objects are specified, then the Document is emptied of all child nodes.

Return value

None (undefined).

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:

js
document.replaceChildren();
document.children; // HTMLCollection []

Specifications

Specification
DOM
# ref-for-dom-parentnode-replacechildren①

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
replaceChildren

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

See also