Check Classes On A DOM Element
You can use the classList
property to check what classes have been assigned to a DOM element.
Assuming the following DOM element:
Once you get a handle on that element, using your preferred method (e.g. Document.getElementById
), you can start inspecting the class list:
Last updated