ここでコード自体に語らせてみます: 現在の反復の後に別の反復があるかどうかを確認するために、どのような条件を使用できますか?
$('#%id% td').each(function(){
if(??????????){ // if there will be a next iteration
while($(this).height() == thisheight){
// do something here on this iteration, but only if there will be another.
}
}
});