Web/API/DOMTokenList/value

From Get docs

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

A DOMString

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
DOMThe definition of 'value' in that specification. Living Standard Initial definition

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
value

Chrome Full support 50

Notes'

Full support 50

Notes'

Notes' Before Chrome 50, this property was part of the deprecated child DOMSettableTokenList interface.

Edge

Full support 17

Firefox

Full support 47

IE

No support No

Opera Full support 37

Notes'

Full support 37

Notes'

Notes' Before Opera 37, this property was part of the deprecated child DOMSettableTokenList interface.

Safari

Full support 10

WebView Android Full support 50

Notes'

Full support 50

Notes'

Notes' Before Chrome 50, this property was part of the deprecated child DOMSettableTokenList interface.

Chrome Android Full support 50

Notes'

Full support 50

Notes'

Notes' Before Chrome 50, this property was part of the deprecated child DOMSettableTokenList interface.

Firefox Android

Full support 47

Opera Android Full support 37

Notes'

Full support 37

Notes'

Notes' Before Opera 37, this property was part of the deprecated child DOMSettableTokenList interface.

Safari iOS

Full support 10

Samsung Internet Android Full support 5.0

Notes'

Full support 5.0

Notes'

Notes' Before Samsung Internet 5.0, this property was part of the deprecated child DOMSettableTokenList interface.

Legend

Full support  
Full support
No support  
No support
See implementation notes.'
See implementation notes.