Skip to content

Instantly share code, notes, and snippets.

@vexus2
Created October 24, 2012 03:44
Show Gist options
  • Save vexus2/3943563 to your computer and use it in GitHub Desktop.
Save vexus2/3943563 to your computer and use it in GitHub Desktop.
[Javascript]スマフォで表示した際にアドレスバーを非表示にする
function hideAddressBar () {
setTimeout(function(){
window.scrollTo(0,1);
}, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment