Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Greetings

I have this structure:

<ul id="list" class="tabs">
<li class="list"><a href="#tab1">Dados do Responsável</font></a></li>
<li class="list"><a href="#tab2">Morada e Contactos</a></li>
<li class="list"><a href="#tab3">Opções de Adesão</a></li>
</ul>

and I am using jquery and css to make it look like a tab menu.

the css and I can define the currently selected menu by setting the class "active" in the li I clicked.

the question is I am trying to find the currently selected li without clicking on it...

I know it can be done using the $("#list").find(), but I don't know how! all I know is that the selected li contains the css class "active"

Can someone help me out with this one?

share|improve this question
3  
There are a lot of jQuery tutorials. I recommend to read the basic ones. The API reference is also very good. Especially for this question, have a look at the possible selectors. Different topic: You should accept more answers to your questions. I don't think that 60% of your questions had no helpful answer. – Felix Kling Apr 17 '11 at 14:53

1 Answer

up vote 5 down vote accepted

Just use the class selector:

$('#list').find('.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.