How to remove the Html element with JavaScript
In this tutorial, we will learn how to remove the html elements from a dom with the help of JavaScript.
Removing Html elements
To remove the html element from a dom tree , we can use the element.remove() method in JavaScript.
Example:
Consider we have the following Html.
<div>
<h1 id="tt-1">Title 1</h1> <p>This is some short text</p>
</div>Now, we are removing the above h1 element from a dom tree by calling the element.remove() method.
const h1 = document.getElementById('tt-1');
h1.remove();Similarly, we can also use the removeChild() method.
const h1 = document.getElementById('tt-1');
h1.parentNode.removeChild(h1);

