$(this).find(".thumb").animate({ "height": "50px" }, "fast");

Another way is to use the context argument of jQuery:
$(".thumb", this);

I believe this will actually be more performant because it only uses one call to jQuery rather than two.

-- Josh

Reply via email to