Reputation: 3464
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
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