The value read-only property of the DOMTokenList interface returns the value of the list as a DOMString.
Syntax
tokenList.value;
Value
Examples
In the following example we retrieve the list of classes set on a <span> element as a DOMTokenList using Element.classList, then write the value of the list to the <span>'s Node.textContent.
First, the HTML:
<span class="a b c"></span>
Now the JavaScript:
var span = document.querySelector("span");
var classes = span.classList;
span.textContent = classes.value;
The output looks like this:
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'value' in that specification. |
Living Standard | Initial definition |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | ? | (Yes) | (Yes) |
| Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic NodeList | (Yes) | (Yes) | (Yes) | ? | (Yes) | (Yes) |