Element: className property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The className property of the Element interface gets and sets the value of the class attribute of the specified element.

Value

A string variable representing the class or space-separated classes of the current element.

Examples

js
const el = document.getElementById("item");
el.className = el.className === "active" ? "inactive" : "active";

Notes

The name className is used for this property instead of class because of conflicts with the "class" keyword in many languages which are used to manipulate the DOM.

className can also be an instance of SVGAnimatedString if the element is an SVGElement. It is easier to get/set the class attribute of an element using Element.getAttribute and Element.setAttribute if you are dealing with SVG elements. However, take into account that Element.getAttribute returns null instead of "" if the element has an empty class attribute.

js
elm.setAttribute("class", "my-class");
const myClass = elm.getAttribute("class");

Note: class is the name of an HTML Attribute, while className is the name of a DOM Property.

Specifications

Specification
DOM
# ref-for-dom-element-classname①

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
className

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
Partial support
Partial support
Has more compatibility info.

See also