одна альтернатива
$(".column").height(Math.max($(col1).height(), $(col2).height()));
Проверьте эту скрипку: http://jsfiddle.net/c4urself/dESx6/
Кажется, у меня нормально работает?
1012 * Javascript *
function matchColHeights(col1, col2) {
var col1Height = $(col1).height();
console.log(col1Height);
var col2Height = $(col2).height();
console.log(col2Height);
if (col1Height < col2Height) {
$(col1).height(col2Height);
} else {
$(col2).height(col1Height);
}
}
$(document).ready(function() {
matchColHeights('#leftPanel', '#rightPanel');
});
CSS
.column {
width: 48%;
float: left;
border: 1px solid red;
}
HTML
<div class="column" id="leftPanel">Lorem ipsum...</div>
<div class="column" id="rightPanel"></div>