次のコード出力style="height....
しかし、私はそれを出力したいstyle="min-height.....
$( window ).load(function() {
boxes = $('.equals');
minHeight = Math.max.apply(
Math, boxes.map(function() {
return $(this).height();
}).get());
boxes.height(minHeight);
});