Files
30-seconds-of-code/snippets/addClass.md
2020-12-30 19:21:15 +02:00

18 lines
364 B
Markdown

---
title: addClass
tags: browser,beginner
---
Adds a class to an HTML element.
- Use `Element.classList` and `DOMTokenList.add()` to add the specified class to the element.
```js
const addClass = (el, className) => el.classList.add(className);
```
```js
addClass(document.querySelector('p'), 'special');
// The paragraph will now have the 'special' class
```