Update some browser snippet descriptions

This commit is contained in:
Angelos Chalaris
2020-03-06 09:57:40 +02:00
parent 6ae9cd2fcb
commit 6f77474128
5 changed files with 16 additions and 12 deletions

View File

@ -3,7 +3,7 @@ title: toggleClass
tags: browser,beginner
---
Toggle a class for an element.
Toggles a class for an HTML element.
Use `element.classList.toggle()` to toggle the specified class for the element.
@ -12,5 +12,6 @@ const toggleClass = (el, className) => el.classList.toggle(className);
```
```js
toggleClass(document.querySelector('p.special'), 'special'); // The paragraph will not have the 'special' class anymore
```
toggleClass(document.querySelector('p.special'), 'special');
// The paragraph will not have the 'special' class anymore
```