Files
30-seconds-of-code/snippets/remove-class.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

531 B

title, tags, author, cover, firstSeen, lastUpdated
title tags author cover firstSeen lastUpdated
Remove class from HTML element browser chalarangelo bag-waiting 2020-12-30T19:21:15+02:00 2020-12-30T19:21:15+02:00

Removes a class from an HTML element.

  • Use Element.classList and DOMTokenList.remove() to remove the specified class from the element.
const removeClass = (el, className) => el.classList.remove(className);
removeClass(document.querySelector('p.special'), 'special');
// The paragraph will not have the 'special' class anymore