Skip to content

Instantly share code, notes, and snippets.

@herschel666
Created September 17, 2012 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herschel666/3735996 to your computer and use it in GitHub Desktop.
Save herschel666/3735996 to your computer and use it in GitHub Desktop.
How to annoy Mobile-Device-Users
/*
* Hiding the address bar after scrolling to the top.
* For the troll in you.
**/
!'ontouchstart' in document.documentElement || window.addEventListener('scroll', function () {
if ( window.scrollY ) return;
window.scrollTo(0, 1);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment