I\'m working on a mobile website which has \"pages\" that have div\'s which take up the screens full size and you can scroll between each one. The problem is, the window resizes
You can wrap your HTML with div and do something like this: http://jsfiddle.net/DerekL/Fhe2x/show
div
$("html, body, #wrapper").css({ height: $(window).height() });
It works on Android and iOS.