Subscribe

JavaScript remove elements

✍️

How to remove element in JavaScript

22 Apr, 2021 · 1 min read

As we created new elements in JavaScript yesterday, I thought I’d be a good article for today to remove some aspects from the DOM.

We simply need to get them in JavaScript using any technique to remove elements.

We want to remove a div with the ID custom_id.

const elem = document.getElementById('custom_id');
elem.remove();

And yes, that’s how simple it is!

Hiding elements in JavaScript

But perhaps you only want to hide it for a brief moment? We can also modify the script to make the element invisible for a while.

const hidden = document.getElementById('hidden_id');
hidden.style.display = 'none';

And that will make your element hidden until you make it visible again.

It can be made visible by swapping the display to block/flex/inline.

const hidden = document.getElementById('hidden_id');
hidden.style.display = 'block';

Feel free to check this out on Codepen.

See the Pen JavaScript remove elements by Chris Bongers (@rebelchris) on CodePen.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Removing all vowels with JavaScript

3 Dec, 2022 · 2 min read

Removing all vowels with JavaScript

10 games to learn JavaScript

2 Dec, 2022 · 3 min read

10 games to learn JavaScript

Join 2099 devs and subscribe to my newsletter