files/en-us/web/api/node/replacechild/index.md
{{APIRef("DOM")}}
The replaceChild() method of the {{domxref("Node")}} interface replaces a child node within the given (parent) node.
replaceChild(newChild, oldChild)
newChild
oldChild.
[!WARNING] If the new node is already present somewhere else in the DOM, it is first removed from that position.
oldChild
[!NOTE] The parameter order, new before old, is unusual.
Element.replaceWith(), applying only to nodes that are elements, may be easier to read and use.
The replaced {{domxref("Node")}}. This is the same node as oldChild.
HierarchyRequestError {{domxref("DOMException")}}
oldChild is not a {{domxref("Document")}}, {{domxref("DocumentFragment")}}, or an {{domxref("Element")}}.oldChild by newChild would lead to a cycle, that is if newChild is an ancestor of the node.newChild is not a {{domxref("DocumentFragment")}}, a {{domxref("DocumentType")}}, an {{domxref("Element")}}, or a {{domxref("CharacterData")}}.newChild is a {{domxref("DocumentFragment")}} with more than one {{domxref("Element")}} child, or that has a {{domxref("Text")}} child.oldChild by newChild would lead to {{domxref("Document")}} with more than one {{domxref("Element")}} as child.oldChild by newChild would lead to the presence of an {{domxref("Element")}} node before a {{domxref("DocumentType")}} node.NotFoundError {{domxref("DOMException")}}
oldChild is not the current node.// Given:
// <div>
// <span id="childSpan">foo bar</span>
// </div>
// Create an empty element node
// without an ID, any attributes, or any content
const sp1 = document.createElement("span");
// Give it an id attribute called 'newSpan'
sp1.id = "newSpan";
// Create some content for the new element.
const sp1Content = document.createTextNode("new replacement span element.");
// Apply that content to the new element
sp1.appendChild(sp1Content);
// Build a reference to the existing node to be replaced
const sp2 = document.getElementById("childSpan");
const parentDiv = sp2.parentNode;
// Replace existing node sp2 with the new span element sp1
parentDiv.replaceChild(sp1, sp2);
// Result:
// <div>
// <span id="newSpan">new replacement span element.</span>
// </div>
{{Specifications}}
{{Compat}}