To find the max viewport height of a device including the space of the address bar
so that we can dynamically resize the min-body and push our c
This is a simple solution that will append the browsers width and height to the document body on load and window resize.
jQuery.event.add(window, "load", resize);
jQuery.event.add(window, "resize", resize);
function resize()
{
var h = jQuery(window).height();
var w = jQuery(window).width();
jQuery("body").css({"width": w, "height": h});
}