Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you do jQuery's hasClass with plain ol' javascript? E.g., <body class="thatClass" /> What's the javascript way to ask if body has "thatClass"?

Also, anyone know of a site that explains that gives javascript versions of many jQuery functions? I often find myself looking for answers to similar questions.

share|improve this question
I suppose you would have to parse the class property (which in case of multiple classes will have multiple class names in random order separated by a space) and check whether your class name is in it. Not terribly difficult, but still terribly inconvenient if not for learning purposes :) – Pekka 웃 Feb 23 '11 at 0:06

4 Answers

up vote 13 down vote accepted

You can check whether element.className matches /\bthatClass\b/.
\b matches a word break.

Or, you can use jQuery's own implementation:

var className = " " + selector + " ";
if ( (" " + element.className + " ").replace(/[\n\t]/g, " ").indexOf(" thatClass ") > -1 ) 

To answer your more general question, you can look at jQuery's source code on github or at the source for hasClass specifically in this source viewer.

share|improve this answer
2  
+1 for jQuery implementation (of for having looked up (is this proper English?) what rclass actually is ;)) – Felix Kling Feb 23 '11 at 0:15
3  
Wouldn't \b match "thatClass-anotherClass"? – Matthew Crumley Feb 23 '11 at 1:00
1  
Yes, it would – lwburk Feb 23 '11 at 1:55
just for completeness: rclass in recent versions is "/[\n\t\r]/g" (\r added) – Felix Schwarz Jan 16 at 13:32

The attribute that stores the classes in use is className.

So you can say:

if (document.body.className.match(/\bmyclass\b/)) {
    ....
}

If you want a location that shows you how jQuery does everything, I would suggest:

http://code.jquery.com/jquery-1.5.js

share|improve this answer

The most effective one liner that

  • returns a boolean (as opposed to Orbling's answer)
  • Does not return a false positive when searching for thisClass on an element that has thisClass-suffix.

function hasClass( target, className ) {
    return new RegExp('(\\s|^)' + className + '(\\s|$)').test(target.className);
}
share|improve this answer

Simply use classList:

if (document.body.classList.contains('thatClass')) {
    // do some stuff
}

Other uses of classList:

document.body.classList.add('thisClass');
// $('body').addClass('thisClass');

document.body.classList.remove('thatClass');
// $('body').removeClass('thatClass');

document.body.classList.toggle('anotherClass');
// $('body').toggleClass('anotherClass');

Browser Support:

  • Chrome 8.0
  • Firefox 3.6
  • IE 10
  • Opera 11.50
  • Safari 5.1

classList Browser Support

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.