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

493 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Add class to HTML element snippet javascript
browser
chalarangelo budapest-palace 2020-12-30T19:21:15+02:00

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