Files
30-seconds-of-code/js/s/remove-class.md
Angelos Chalaris 5c913d20bd Reorganize snippets
2023-05-03 21:19:02 +03:00

532 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Remove class from HTML element snippet javascript
browser
chalarangelo bag-waiting 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