Skip to content

Instantly share code, notes, and snippets.

@tylersticka
Forked from gyndav/gist:1883439
Created June 7, 2012 21:56
Show Gist options
  • Save tylersticka/2891844 to your computer and use it in GitHub Desktop.
Save tylersticka/2891844 to your computer and use it in GitHub Desktop.
Skip iPhone URL bar
(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) && !location.hash && setTimeout(function(){
!pageYOffset && window.scrollTo(0,1);
}, 1000);
@tylersticka
Copy link
Author

Added specific iPhone and iPod matches to avoid positives for iPad, simplified pageYOffset check to match earlier conditional syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment