Hide browser address bar on BlackBerry OS6

I am currently developing HTML 5 mobile web applications. If you add such an application to your desktop on the iPhone, it almost looks like a native application, since I can hide the address bar for mobile safari. This can be achieved using some meta tags in my HTML code.

Now I was wondering if it is possible to hide the address bar on Blackberry OS 6? Does anyone have an idea if and how this can be achieved? Is there a meta tag specific to Blackberry?

+4
source share
1 answer

There is no meta tag for BlackBerry.
Try using the window.scrollTo (0,1) function when loading content into the browser.

+1
source

All Articles