Ive built a simple function to look at each div, and then then height of each child div inside, get the maximum height, and then set the largest height to all of the child divs:-
$(".clsTransactionRow").each( function () { var maxHeight = 0; $(this).find("div").each(function () { maxHeight = Math.max(maxHeight,$(this).height()); }); $(this).find("div").height(maxHeight); });