Languages
[Edit]
EN

JavaScript - replace child element

0 points
Created by:
christa
600

In this article, we would like to show you how to replace a child element using JavaScript.

Quick solution:

parentNode.replaceChild(newChild, oldChild);

 

Practical example

In this example, we present how to use replaceChild() method to replace oldChild of the parentNode with a newChild.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
  <div id="container">
    <div id="child-element">Example text...</div>
  </div>
  <script>

    // get handle to element to replace
    var oldChild = document.querySelector('#child-element');
    
    // create new element
    var newChild = document.createElement('div');
    newChild.textContent = 'new child text...';
    
    // get handle to the parent node
    var parentNode = oldChild.parentNode;
    
    parentNode.replaceChild(newChild, oldChild);

  </script>
</body>
</html>

References

  1. Node.replaceChild() - Web APIs | MDN

Alternative titles

  1. JavaScript - replace one child element
  2. JavaScript - replaceChild example
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join