className gets and sets the value of the class attribute of the specified element.
var cName = elementNodeReference.className; elementNodeReference.className = cName;
let el = document.getElementById('item');
if (el.className === 'active'){
el.className = 'inactive';
} else {
el.className = 'active';
} 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 better to get/set the className 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.
elm.setAttribute('class', elm.getAttribute('class')) The class is an HTML Attribute, while the className is a DOM Property.
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'element.className' in that specification. | Living Standard | |
| DOM4 The definition of 'element.className' in that specification. | Obsolete | |
| Document Object Model (DOM) Level 2 HTML Specification The definition of 'element.className' in that specification. | Obsolete | Initial definition |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/element/className