Files
30-seconds-of-code/snippets/removeElement.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

497 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Remove DOM element browser beginner 2021-01-07T00:20:34+02:00 2021-01-07T00:20:34+02:00

Removes an element from the DOM.

  • Use Element.parentNode to get the given element's parent node.
  • Use Element.removeChild() to remove the given element from its parent node.
const removeElement = el => el.parentNode.removeChild(el);
removeElement(document.querySelector('#my-element'));
// Removes #my-element from the DOM