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.

Here is a fiddle for my hover event.

Currently on hover all divs of the same class are toggled. I'm wanting to toggle just the one div (that which is being hovered on). I've tried a few filters but can't seem to work it out.

Help would be much appreciated.

share|improve this question

1 Answer

up vote 5 down vote accepted

You need to search for a .foo2 in the same .container of the link:

$(".container a").hover(function()
{
    $('.foo2', $(this).parent()).toggle();
});​
share|improve this answer
Thank you, works a charm :) – Jessica Aug 26 '12 at 14:24
You're welcome, mark as accepted then! – moonwave99 Aug 26 '12 at 14:25

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.