Check if a class active exist on an li with a class menu
For example
<li class="menu active">something...</li>
|
is the simplest way. This will return all elements with both classes. Or an already answered Jquery hasClass() - check for more than one class |
||||
|
|
|
You can retrieve all elements having the 'active' class using the following:
Checking wether or not there are any would, i belief, be with
|
|||
|
|
|
You can use the
Or if you want to select it in one go, you can use:
|
|||
|
|