Hi Guys,
I have a div on my website that should be the height of the window. This is what i got:
$(document).ready(function() {
var bodyheight = $(document).height();
$("#sidebar").height(bodyheight);
});
However, it does not automatically change when the window is resized? Does any body know how to fix this?
Thanks