Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created August 27, 2012 14:53
Show Gist options
  • Select an option

  • Save simenbrekken/3489205 to your computer and use it in GitHub Desktop.

Select an option

Save simenbrekken/3489205 to your computer and use it in GitHub Desktop.
Hide iOS address bar on ready and ajax load.
var hideAddressBar = function() {
_.defer(window.scrollTo, 0, 0);
};
$(document).ready(hideAddressBar).on('ajaxComplete', hideAddressBar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment