This works, but I'm sure that it written more cleanly.
<script>
$(document).ready(function(){
$('.col').css({'height':($(document).height())+'px'});
$(window).resize(function() {
$('.col').css({'height':($(document).height())+'px'});
});
}
</script>
I've tried without the first $('.col').css...
and it doesn't work.
So basically what would I like to tell the browser is: "When document is ready, resize this div, and keep on resizing it on every height change".