Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using plain JavaScript (not jQuery), is there a way I can test to see if an element contains a class?

Currently, I'm doing this:

HTML:

<div id="test" class="class1"></div>

JS:

var test = document.getElementById("test");
var testClass = test.className;
switch(testClass){
    case "class1": test.innerHTML = "I have class1"; break;
    case "class2": test.innerHTML = "I have class2"; break;
    case "class3": test.innerHTML = "I have class3"; break;
    case "class4": test.innerHTML = "I have class4"; break;
    default: test.innerHTML = "";
}

This results in this output, which is correct:

I have class1

The issue is that if I change the HTML to this...

<div id="test" class="class1 class5"></div>

...there's no longer an exact match, so I get the default output of nothing (""). But I still want the output to be I have class1 because the <div> still contains the .class1 class.

share|improve this question

8 Answers

up vote 30 down vote accepted

Using indexOf is correct, but you have to tweak it a little:

function hasClass(element, cls) {
    return (' ' + element.className + ' ').indexOf(' ' + cls + ' ') > -1;
}

Otherwise you will also get true if the class you are looking for is part of another class name.

DEMO

jQuery uses a similar (if not the same) method.


Alternatively, if you work with a browser which supports element.classList, you can use its .contains method:

element.classList.contains(cls);

For cross-browser compatibility (especially for IE) you might still want to create a hasClass function and make the test in there.


Applied to the example:

As this does not work together with the switch statement, you could achieve the same effect with this code:

var test = document.getElementById("test"),
    classes = ['class1', 'class2', 'class3', 'class4'];

test.innerHTML = "";

for(var i = 0, j = classes.length; i < j; i++) {
    if(hasClass(test, classes[i])) {
        test.innerHTML = "I have " + classes[i];
        break;
    }
}

It's also less redundant ;)

share|improve this answer
Awesome, but how do I use that in combination with the switch statement so that I can change the output based on which classes the div contains? – daGUY May 5 '11 at 14:53
@daGUY: What do you want to do with the switch statement anyway? E.g. The second div has two classes but it would only output I have class1 as you are using break. If you want to output every class an element has, then you can just take the className and split it on white spaces. Or what is your actual goal? – Felix Kling May 5 '11 at 15:00
@Felix Kling: I need the innerHTML of the div to change between four different strings depending on which class it contains. I just used "I have class1", etc. as examples - the real strings are all different. I will only be showing one string at a time, not combining any (hence the breaks after each case). I just want it to still work even if the matching class is one of multiple classes on the div. – daGUY May 5 '11 at 15:24
@daGUY: Please see my update... – Felix Kling May 5 '11 at 15:29
@Felix Kling: that did it, thanks so much! I'm actually not outputting the names of the classes, but rather one of four entirely different strings, so I modified it slightly with a few IF/ELSE IF statements to handle each one. Works perfectly though. – daGUY May 5 '11 at 16:36
show 4 more comments

className is just a string so you can use the regular indexOf function to see if the list of classes contains another string.

share|improve this answer
What about testing for class class in the above example? – Felix Kling May 5 '11 at 13:47
2  
From experience, this method can be quite risky: It will return true when you look for the class foo on an element which has the foobar class. – Zirak May 5 '11 at 13:53
@Zirak: That is exactly what I meant... – Felix Kling May 5 '11 at 13:58
1  
Sure, you just have be aware of what you are testing. Felix's code works well by using spaces as the delimiter. – David May 5 '11 at 14:11

A simplified oneliner:1

function hasClassName(classname,id) {
 return  String ( ( document.getElementById(id)||{} ) .className )
         .split(/\s/)
         .indexOf(classname) >= 0;
}

1 indexOf for arrays is not supported by IE (ofcourse). There are plenty of monkey patches to be found on the net for that.

share|improve this answer
The problem with the word boundaries is that some valid characters for class names such as - are considered as word boundaries. E.g. looking for foo and the class is foo-bar yields true. – Felix Kling May 5 '11 at 14:57
You are right. Removed the original, added another approach. Still a oneliner. – KooiInc May 5 '11 at 16:09

This is a little old, but maybe someone will find my solution helpfull:

// Fix IE's indexOf Array
if (!Array.prototype.indexOf) {
    Array.prototype.indexOf = function (searchElement) {
        if (this == null) throw new TypeError();
        var t = Object(this);
        var len = t.length >>> 0;
        if (len === 0) return -1;
        var n = 0;
        if (arguments.length > 0) {
            n = Number(arguments[1]);
            if (n != n) n = 0;
            else if (n != 0 && n != Infinity && n != -Infinity) n = (n > 0 || -1) * Math.floor(Math.abs(n));
        }
        if (n >= len) return -1;
        var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0);
        for (; k < len; k++) if (k in t && t[k] === searchElement) return k;
        return -1;
    }
}
// add hasClass support
if (!Element.prototype.hasClass) {
    Element.prototype.hasClass = function (classname) {
        if (this == null) throw new TypeError();
        return this.className.split(' ').indexOf(classname) === -1 ? false : true;
    }
}
share|improve this answer
use: 'element.hasClass('classname'); – Dementic Jun 28 '12 at 12:12
btw, this will work in IE8 and above. – Dementic Jun 28 '12 at 12:24
Why did you use t.length >>> 0 ? As far as I know it is a noop if you use '0', right? – Vitor Canova Apr 5 at 16:53
wow so much code for something simple. Why not use a regular expression and not reinvent the wheel? you could just use /^class_name_you_are_searching_for$/.test(myElement.className) – pqsk Jun 12 at 21:31
I wrote that too fast. Just to not overcomplicate my regular expression it would be /\s*class_name_you_are_searching_for\s*/.test(myElement.className) – pqsk Jun 12 at 22:10

Try this one:

document.getElementsByClassName = function(cl) {
   var retnode = [];
   var myclass = new RegExp('\\b'+cl+'\\b');
   var elem = this.getElementsByTagName('*');
   for (var i = 0; i < elem.length; i++) {
       var classes = elem[i].className;
       if (myclass.test(classes)) retnode.push(elem[i]);
   }
    return retnode;
};
share|improve this answer
1  
Be careful with the word boundary. It will also match true if you have e.g. a class foo-bar and search for foo. – Felix Kling May 5 '11 at 13:53
Hi Jimy, so I was searching for this \b metacharacter and it only considers [a-zA-Z0-9_] as word characters. So for a classnames containing a minus char this won't work. – Stano Jun 11 at 22:30

Here's a case-insensitive trivial solution:

function hasClass(element, classNameToTestFor) {
    var classNames = element.className.split(' ');
    for (var i = 0; i < classNames.length; i++) {
        if (classNames[i].toLowerCase() == classNameToTestFor.toLowerCase()) {
            return true;
        }
    }
    return false;
}
share|improve this answer
  1. Felix's trick of adding spaces to flank the className and the string you're searching for is the right approach to determining whether the elements has the class or not.

  2. To have different behaviour according to the class, you may use function references, or functions, within a map:

    function fn1(element){ /* code for element with class1 */ }
    
    function fn2(element){ /* code for element with class2 */ }
    
    function fn2(element){ /* code for element with class3 */ }
    
    var fns={'class1': fn1, 'class2': fn2, 'class3': fn3};
    
    for(var i in fns) {
        if(hasClass(test, i)) {
            fns[i](test);
        }
    }
    
    • for(var i in fns) iterates through the keys within the fns map.
    • Having no break after fnsi allows the code to be executed whenever there is a match - so that if the element has, f.i., class1 and class2, both fn1 and fn2 will be executed.
    • The advantage of this approach is that the code to execute for each class is arbitrary, like the one in the switch statement; in your example all the cases performed a similar operation, but tomorrow you may need to do different things for each.
    • You may simulate the default case by having a status variable telling whether a match was found in the loop or not.
share|improve this answer

Since he wants to use switch(), I'm surprised no one has put this forth yet:

var test = document.getElementById("test");
var testClasses = test.className.split(" ");
test.innerHTML = "";
for(var i=0; i<testClasses.length; i++) {
    switch(testClasses[i]) {
        case "class1": test.innerHTML += "I have class1<br/>"; break;
        case "class2": test.innerHTML += "I have class2<br/>"; break;
        case "class3": test.innerHTML += "I have class3<br/>"; break;
        case "class4": test.innerHTML += "I have class4<br/>"; break;
        default: test.innerHTML += "(unknown class:" + testClasses[i] + ")<br/>";
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.