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

Check if a class active exist on an li with a class menu

For example

<li class="menu active">something...</li>
share|improve this question
possible duplicate of Determine if an element has a CSS class with jQuery – karim79 Aug 2 '11 at 11:58

5 Answers

up vote 10 down vote accepted

I think you want to use hasClass()

$('li.menu').hasClass('active');
share|improve this answer
$('li.menu.active')

is the simplest way. This will return all elements with both classes.

Or an already answered Jquery hasClass() - check for more than one class

share|improve this answer

use the hasClass jQuery method

share|improve this answer

You can retrieve all elements having the 'active' class using the following:

$('.active')

Checking wether or not there are any would, i belief, be with

if($('.active').length > 0)
{
    // code
}
share|improve this answer

You can use the hasClass method, eg.

$('li.menu').hasClass('active') // true|false

Or if you want to select it in one go, you can use:

$('li.menu.active')
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.