Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Created February 16, 2013 16:16
Show Gist options
  • Save benjamincharity/4967512 to your computer and use it in GitHub Desktop.
Save benjamincharity/4967512 to your computer and use it in GitHub Desktop.
Remy Sharp's solution to hiding the mobile nav bar without affecting desktop browsers.
// Original Author: Remy Sharp - http://remysharp.com/2010/08/05/doing-it-right-skipping-the-iphone-url-bar/
/mobi/i.test(navigator.userAgent) && !location.hash && setTimeout(function () {
if (!pageYOffset) window.scrollTo(0, 1);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment