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

507 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Toggle class of HTML element browser beginner 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