Files
30-seconds-of-code/snippets/toggle-class.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

510 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Toggle class of HTML element browser laptop-plants-2 2017-12-28T23:46:33+02:00 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