Forum Moderators: open
function findLivePageHeight() {
if (window.innerHeight) {
return window.innerHeight;
}
if (document.body.clientHeight) {
return document.body.clientHeight;
}
return (null);
}
var livePageHeight = findLivePageHeight();
function changeHeight() {
var object = document.getElementById('wrapper');
object.style.minHeight = livePageHeight + 'px';
}