Files
30-seconds-of-code/snippets/removeClass.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

481 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
removeClass browser,beginner 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