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.

I've been doing some Google searches for the most efficient way to do this, but I have not found a working answer to it yet. I found this but it wasn't working when I tried it out.

I'm trying to toggle a class on click to the element 'a.accordion-toggle'. While the solution above did in fact work, it would toggle the class for every instance of 'a.accordion-toggle'. Since there are multiple accordions, this is not ideal.

Is there a way for me to target only the child of the accordion being clicked?

Thanks guys!

share|improve this question

1 Answer

up vote 0 down vote accepted

In your selector, specify a context. This is the second argument to the jQuery.

$('a.accordion-toggle', '#theelementinwhichyouwanttosearch')

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.