Sometimes, we want to remove an HTML element using JavaScript.
In this article, we’ll look at how to remove an HTML element using JavaScript.
How to remove an HTML element using JavaScript?
To remove an HTML element using JavaScript, we use the remove
method.
For instance, we write
document.getElementById("dummy").remove();
to select the element we want to remove with getElementById
.
Then we call remove
on it to remove it.
Conclusion
To remove an HTML element using JavaScript, we use the remove
method.