Skip to content

Instantly share code, notes, and snippets.

@aral
Created May 10, 2011 23:48
Show Gist options
  • Save aral/965632 to your computer and use it in GitHub Desktop.
Save aral/965632 to your computer and use it in GitHub Desktop.
Orientation change doesn't fire on iPad - workaround - jQueryMobile scrollView
/*$(document).live("orientationchange", function(event) {
ResizePageContentHeight($(".ui-page"));
});*/
// As per: http://code.google.com/p/jqtouch/issues/detail?id=370
$(window).bind('orientationchange', function(event) {
ResizePageContentHeight($(".ui-page"));
}).trigger('orientationchange');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment