$(document).ready(function () { var totalHeight = document.documentElement.clientHeight; var bodyHeight = $("body").height(); if (bodyHeight > totalHeight) return; var diff = totalHeight - bodyHeight - 1; $('footer').css('margin-top', diff + 25); return; });