The value property of the DOMTokenList interface is a stringifier that returns the value of the list as a DOMString, or clears and sets the list to the given value.
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:
let span = document.querySelector("span");
let 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
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
value | Chrome
Full support
50
| Edge Full support ≤18 | Firefox Full support Yes | IE No support No | Opera
Full support
37
| Safari Full support 10 | WebView Android
Full support
50
| Chrome Android
Full support
50
| Firefox Android Full support Yes | Opera Android
Full support
37
| Safari iOS Full support 10 | Samsung Internet Android
Full support
5.0
|
Legend
- Full support
- Full support
- No support
- No support
- See implementation notes.
- See implementation notes.
