Removing Address Bar from Browser (To View on Android)

Removing address bar from browser (to view on Android)

You can do that with the next code

 if(navigator.userAgent.match(/Android/i)){
window.scrollTo(0,1);
}

I hope it helps you!

hide mobile browser address bar on chrome (android)

scrollTo(0,1) is not yet supported in Chrome for Android (it was recently added and then removed). We do have the FullScreen API but that is a little heavy handed for what you want to achieve.

Hide address bar on chrome mobile

request full screen. i'm not sure if your users wil like it.

http://updates.html5rocks.com/2011/10/Let-Your-Content-Do-the-Talking-Fullscreen-API



Related Topics



Leave a reply



Submit