Home > Net >  How to get class list of the <HTML> element?
How to get class list of the <HTML> element?

Time:05-05

I would like to access the class list of the html element (that is in this case I'd like to know if my-class is set on html):

<html >
...
</html>

How can I do that with JavaScript?

CodePudding user response:

Select the element and then classList:

document.querySelector('html').classList or if you have multiple clsases in your element then you can select by class to get the other classes from this element too. document.querySelector('.my-class').classList

  • Related