Determine if element has CSS class with jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:22:19Z http://stackoverflow.com/feeds/question/263232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery 9 Determine if element has CSS class with jQuery Mitchel Sellers 2008-11-04T20:00:58Z 2009-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#263240 17 Answer by eyelidlessness for Determine if element has CSS class with jQuery eyelidlessness 2008-11-04T20:03:18Z 2008-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#263246 4 Answer by Javier for Determine if element has CSS class with jQuery Javier 2008-11-04T20:04:24Z 2009-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#1541710 0 Answer by juan for Determine if element has CSS class with jQuery juan 2009-10-09T03:54:18Z 2009-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#1773182 0 Answer by Mark for Determine if element has CSS class with jQuery Mark 2009-11-20T20:55:36Z 2009-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>