A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/DOMTokenList/add below:

DOMTokenList: add() method - Web APIs

DOMTokenList: add() method

Baseline Widely available

The add() method of the DOMTokenList interface adds the given tokens to the list, omitting any that are already present.

Syntax
add(token1)
add(token1, token2)
add(token1, token2, /* …, */ tokenN)
Parameters
tokenN

A string representing a token (or tokens) to add to the DOMTokenList.

Return value

None.

Exceptions
SyntaxError DOMException

Thrown if one of the arguments is an empty string

InvalidCharacterError DOMException

Thrown if a token contains ASCII whitespace.

Examples

In the following example, we retrieve the list of classes set on a <span> element as a DOMTokenList, using Element.classList. We then add a new token to the list, and write the list into the <span>'s Node.textContent.

First, the HTML:

<span class="a b c"></span>

Now the JavaScript:

const span = document.querySelector("span");
const classes = span.classList;
classes.add("d");
span.textContent = classes;

The output looks like this:

You can add multiple tokens as well:

span.classList.add("d", "e", "f");
Specifications Browser compatibility

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4