405 B
405 B
title, tags
| title | tags |
|---|---|
| removeClass | browser,beginner |
Removes a class from an HTML element.
- Use
Element.classListandDOMTokenList.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