offline version v3


193 of 264 menu

remove method of the classList object

The remove method of the classList object removes a given CSS class of an element.

Syntax

element.classList.remove(class);

Example

We remove the class ggg:

<p id="elem" class="www ggg zzz"></p> let elem = document.querySelector('#elem'); elem.classList.remove('ggg');

The code execution result:

<p id="elem" class="www zzz"></p>

See also

enru