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

511 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Remove class from HTML element 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