Visit Mozilla.org

DOM:element.className

From MDC

« Gecko DOM Reference

Contents

[edit] Summary

className gets and sets the value of the class attribute of the specified element.

[edit] Syntax and values

var cName = elementNodeReference.className;
elementNodeReference.className = cName;

cName is a string variable representing the class or space-separated classes of the current element.

[edit] Example

var elementNodeReference = document.getElementById("div1");
if (elementNodeReference.className == "fixed") 
  {
   // skip a particular class of element
   goNextElement();
  };

[edit] 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.

[edit] Specification

DOM Level 2 HTML: className