tipsywacky
tipsywacky

Reputation: 3464

How to hide the address bar on a mobile web such as chrome or android browser?

I'm trying to make videojs full screen on the android devices when the user enter the URL. However, the address bar is still there. How can I hide it?

Upvotes: 1

Views: 4758

Answers (1)

Alex Gill
Alex Gill

Reputation: 2491

Try this...

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

This obviously has to be done on a load, see http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/

Upvotes: 3

Related Questions