Element.remove()

El método Element.remove() elimina un elemento del DOM.

Sintaxis

js
remove()

Parámetros

Ninguno.

Valor de retorno

Ninguno (undefined).

Ejemplos

Utilizando remove()

html
<div id="div-01">Aquí está el div-01</div>
<div id="div-02">Aquí está el div-02</div>
<div id="div-03">Aquí está el div-03</div>
js
const element = document.getElementById("div-02");
element.remove(); // Elimina el div con el id 'div-02'

Element.remove() no se puede recorrer

El método remove() no está incluido en la sentencia with. Véase Symbol.unscopables para más información.

js
with (node) {
  remove();
}
// ReferenceError: remove no está definido

Especificaciones

Specification
DOM Standard
# ref-for-dom-childnode-remove①

Compatibilidad con navegadores

BCD tables only load in the browser

Véase también