Files
30-seconds-of-code/snippets/toggle-class.md
2023-04-28 22:29:23 +03:00

490 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Toggle class of HTML element snippet
browser
laptop-plants-2 2020-10-22T20:24:30+03:00

Toggles a class for an HTML element.

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