Adding and Removing Nodes (HTML Elements)
To add a new element to the HTML DOM, you must create the element (element node) first, and then append it to an existing element.
This code creates a new <p> element:
To add text to the <p> element, you must create a text node first. This code creates a text node:
Then you must append the text node to the <p> element:
Finally you must append the new element to an existing element.
This code finds an existing element:
This code appends the new element to the existing element:
To remove an HTML element, you must know the parent of the element:
<script>
var parent=document.getElementById("div1");
var child=document.getElementById("p1");
parent.removeChild(child);
</script>
This HTML document contains a <div> element with two child nodes (two <p> elements):
Find the element with id="div1":
Find the <p> element with id="p1":
Remove the child from the parent:
| It would be nice to be able to remove an element without referring to the
parent. But sorry. The DOM needs to know both the element you want to remove, and its parent. |
Here is a common workaround: Find the child you want to remove, and use its parentNode property to find the parent:
In the HTML DOM section of this JavaScript tutorial you have learned:
If you want to learn more about using JavaScript to access the HTML DOM, please go to our
Your message has been sent to W3Schools.