Working on a tooltip for a table row, I put a span in a table row with a class of "tip" and then tried to select that through find('.tip') but this wouldn't work.
$(".tip_trigger").hover(function(){
tip = $(this).find('.tip');
tip.show();
When I put the .tip class on a td it worked fine showing the tooltip.