vote up 8 vote down star

I'm working with jQuery and looking to see if there is an easy way to determine if the element has a specific css class associated with it.

I have the id of the element, and the css class that I'm looking for. I just need to be able to in an if statement do a comparison based on the existance of that class on the element.

flag

4 Answers

vote up 17 vote down check
$(id).hasClass(class)
link|flag
2  
Exactly. Documentation here: docs.jquery.com/Traversing/hasClass – Nathan Long Nov 4 '08 at 20:14
1  
Wow, all that looking and I still missed it – Mitchel Sellers Nov 4 '08 at 21:36
2  
yeah their documentation isn't so great in my opinion. – Triptych May 29 at 18:13
2  
Triptych, Agreed. It's especially badly organized, and I generally have difficulty knowing where to look for a lot of things. – eyelidlessness May 30 at 16:59
vote up 0 vote down

What about the option where the element hasn't got a class - would that be:

elem = $("#elemid"); if (!elem.hasClass ("class")) { // whatever }

?

Any idea?

link|flag
Jquery has a "not" selector you could try. I've never used it but it is here: docs.jquery.com/Selectors/not – gaoshan88 Nov 20 at 21:07
vote up 0 vote down

hey thanks! helped me a lot

link|flag
vote up 4 vote down

from the FAQ

elem = $("#elemid");
if (elem.is (".class")) {
   // whatever
}

or:

elem = $("#elemid");
if (elem.hasClass ("class")) {
   // whatever
}
link|flag
1  
Your use of if statements without parentheses is a syntax error. – eyelidlessness Aug 29 at 19:30
tks, fixed. – Javier Aug 31 at 4:06

Your Answer

Get an OpenID
or

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