Determine if element has CSS class with jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:22:19Zhttp://stackoverflow.com/feeds/question/263232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery9Determine if element has CSS class with jQueryMitchel Sellers2008-11-04T20:00:58Z2009-11-20T20:55:36Z
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery/263240#26324017Answer by eyelidlessness for Determine if element has CSS class with jQueryeyelidlessness2008-11-04T20:03:18Z2008-11-04T20:03:18Z<pre><code>$(id).hasClass(class)
</code></pre>
http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery/263246#2632464Answer by Javier for Determine if element has CSS class with jQueryJavier2008-11-04T20:04:24Z2009-08-31T04:05:56Z<p>from the <a href="http://docs.jquery.com/Frequently%5FAsked%5FQuestions#How%5Fdo%5FI%5Ftest%5Fwhether%5Fan%5Felement%5Fhas%5Fa%5Fparticular%5Fclass.3F" rel="nofollow">FAQ</a></p>
<pre><code>elem = $("#elemid");
if (elem.is (".class")) {
// whatever
}
</code></pre>
<p>or:</p>
<pre><code>elem = $("#elemid");
if (elem.hasClass ("class")) {
// whatever
}
</code></pre>
http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery/1541710#15417100Answer by juan for Determine if element has CSS class with jQueryjuan2009-10-09T03:54:18Z2009-10-09T03:54:18Z<p>hey thanks! helped me a lot</p>
http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery/1773182#17731820Answer by Mark for Determine if element has CSS class with jQueryMark2009-11-20T20:55:36Z2009-11-20T20:55:36Z<p>What about the option where the element hasn't got a class - would that be:</p>
<p>elem = $("#elemid");
if (!elem.hasClass ("class")) {
// whatever
}</p>
<p>?</p>
<p>Any idea?</p>