Files
30-seconds-of-code/snippets/js/s/remove-class-from-html-element.md
Angelos Chalaris 9d032ce05e Rename js snippets
2023-05-19 20:23:47 +03:00

23 lines
532 B
Markdown

---
title: Remove class from HTML element
type: snippet
language: javascript
tags: [browser]
author: chalarangelo
cover: bag-waiting
dateModified: 2020-12-30T19:21:15+02:00
---
Removes a class from an HTML element.
- Use `Element.classList` and `DOMTokenList.remove()` to remove the specified class from the element.
```js
const removeClass = (el, className) => el.classList.remove(className);
```
```js
removeClass(document.querySelector('p.special'), 'special');
// The paragraph will not have the 'special' class anymore
```