http://www.tigerstudiodesign.com/blog/
иногда высота соответствия недостаточно высока, особенно когда вы нажимаете ссылку, чтобы перейти на другую страницу.высоты не будут совпадать друг с другом, если я не обновлю.
код, который я использую для соответствия высотам:
function matchColHeights(col1, col2) {
$('img').load(function() { //let images load before I get the height, else height is calculated based on text alone
var col1Height = $(col1).height();
//alert('col1: '+col1Height);
var col2Height = $(col2).height();
//alert('col2: '+col2Height);
if (col1Height < col2Height) {
$(col1).height(col2Height);
} else {
$(col2).height(col1Height);
}
});
}
$(document).ready(function() {
matchColHeights('#leftPanel', '#rightPanel');
});
есть идеи?