Snippets

Melodi Pace addClass

Created by Melodi Pace


Adds a class to an HTML element.

  • Use Element.classList and DOMTokenList.add() to add the specified class to the element.
const addClass = (el, className) => el.classList.add(className);
addClass(document.querySelector('p'), 'special');
// The paragraph will now have the 'special' class

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.