Chodzi poprostu o to ze jezeli jeden blok jest wiekszy tamten wyrownuje.
Kod
<script>
$(document).ready(function(){
var h1 = $("#lewy").height();
var h2 = $("#prawy").height();
if (h2>h1)
$("#lewy").height(h2);
else
$("#prawy").height(h1);
});
</script>
$(document).ready(function(){
var h1 = $("#lewy").height();
var h2 = $("#prawy").height();
if (h2>h1)
$("#lewy").height(h2);
else
$("#prawy").height(h1);
});
</script>