Files
30-seconds-of-code/snippets/removeElement.md
Chalarangelo 0ad42f60d6 Fix typos
2022-09-04 12:45:09 +03:00

24 lines
553 B
Markdown

---
title: Remove DOM element
tags: browser
expertise: beginner
author: chalarangelo
cover: blog_images/by-the-lighthouse.jpg
firstSeen: 2021-01-07T00:20:34+02:00
lastUpdated: 2021-01-07T00:20:34+02:00
---
Removes an element from the DOM.
- Use `Node.parentNode` to get the given element's parent node.
- Use `Node.removeChild()` to remove the given element from its parent node.
```js
const removeElement = el => el.parentNode.removeChild(el);
```
```js
removeElement(document.querySelector('#my-element'));
// Removes #my-element from the DOM
```