Paste @tatu ulmanen example
This is obvious, but if you just want to split the rows with higher cells, wrap a tr loop :)
$('table tr').each(function (){ var max = 0; $(this).find('td').each(function (){ max = Math.max($(this).height(), max); }).height(max); });
Hedde van der heide
source share