HTML DOMTokenList value
❮ The DOMTokenList ObjectExamples
Get an element's classList as a string:
const list = element.classList;
let text = list.value;
Try it Yourself »
Add a "myStyle" class to an element:
const list = element.classList;
list.add("myStyle");
Try it Yourself »
Remove the "myStyle" class from an element:
const list = element.classList;
list.remove("myStyle");
Try it Yourself »
Description
The value
property returns a
DOMTokenList as a string.
See Also:
Syntax
domtokenlist.value
Parameters
NONE |
Return Value
Type | Description |
String | The DOMTokenList as a string. |
Browser Support
domtokenlist.value
is a DOM Level 4 (2015) feature.
It is supported in all modern browsers:
Chrome | Edge | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
domtokenlist.value
is not supported in Internet Explorer 11 (or earlier).
❮ The DOMTokenList Object