You can pass a selector to the parent argument I believe.
$('.remove').click(function(){
$(this).parents("tr:first").hide();
return false;
});
Or you can use closest as indicated by another answer.
$('.remove').click(function(){
$(this).closest("tr").hide();
return false;
});