[jQuery] Re: simple beginner question
you're each idea is right on track $(".logo").each(function(){ $(this).hover(function(){ /// *this* within an *each* will single out the individual .logo you hover over $(this).find(".caption").animate({opacity:"show"}, "fast");// look within this .logo only }
[jQuery] Re: simple beginner question
Something like this: $(".logo").hover(function(){ $(this).children(".caption").animate({opacity:"show"}, "fast"); }, function(){ $(this).children(".caption").animate({opacity:"hide"}, "slow"); });