Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove all the DOM elements with a specific tag name in Javascript

How can I remove all the elements with a specific tag name using Javascript. For example, I did the following:

var els = document.getElementsByTagName("center");

and it returned an array of all the center elements. How may I remove all these elements?

Coming from Remove all child elements of a DOM node in JavaScript and JavaScript DOM remove element I know that I can loop through els, find the parent of each element and then remove that specific node. But is there anyother way provided by javascript. Like we can do $('center').remove() in jquery and it removes all the elements with center tag. Anything similar to that in Javascript?

like image 339
Kamran Ahmed Avatar asked Nov 18 '13 09:11

Kamran Ahmed


People also ask

How do I remove all DOM elements?

We can remove all the children elements of the DOM element by setting the innerHTML of the element to an empty string. The innerHTML property is used to set and get the HTML content within the element.

What does remove () do JS?

The JavaScript delete operator removes a property from an object; if no more references to the same property are held, it is eventually released automatically.

Which property should be used to remove an element from DOM?

If you want to remove the element from the DOM entirely, you can use the removeChild() method.


2 Answers

With the mention that you still loop over the elements (there is no way to avoid that), you can do this:

Array.prototype.slice.call(document.getElementsByTagName('center')).forEach(
  function(item) {
    item.remove();
    // or item.parentNode.removeChild(item); for older browsers (Edge-)
});

DEMO: http://jsbin.com/OtOyUVE/1/edit

Some notes on slice:

document.getElementsByTagName doesn't return an array, it returns a live list with a length property. That is why it is needed to first convert it into an array (Array.prototype.slice does that for any object with the length property). By doing that you eliminate the problem of the list being live (gets updated when you change the DOM) and you also get the other array functions to work (like forEach) which have a more functional syntax for looping.

like image 137
Tibos Avatar answered Oct 04 '22 00:10

Tibos


"it returned an array of all the center elements."

Well, it returned an array-like object (a live NodeList or an HTMLCollection depending on the browser).

"How may I remove all these elements?"

You have to loop through the list removing them one at a time as you mentioned later in your question. If you find yourself doing that a lot, encapsulate the looping inside a function so that you don't have to repeat it.

"we can do $('center').remove() in jquery and it removes all the elements with center tag. Anything similar to that in Javascript?"

jQuery is a collection of JavaScript functions, so it can't do anything JavaScript can't do. jQuery's .remove() method (like most other jQuery methods) will loop internally, it just saves you having to think about it. So that comes back to what I already mentioned above, encapsulate the loop/remove code in a function so that you can use it from any part of your code.

like image 45
nnnnnn Avatar answered Oct 04 '22 02:10

nnnnnn