[jQuery] Re: simple beginner question

2009-06-18 Thread Charlie
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

2009-06-18 Thread jlcox
Something like this: $(".logo").hover(function(){ $(this).children(".caption").animate({opacity:"show"}, "fast"); }, function(){ $(this).children(".caption").animate({opacity:"hide"}, "slow"); });