Hide address bar in the browser

Hide address bar in the browser

BY 12 Mar 2013 Web Application Development

Hi there!

Is there any way to hide address bar of the browser upon page load?

In Safari on iOS, where address bar also hides, when user scrolls down, this can be done with

 window.addEventListener("load",function() {
   setTimeout(function(){
    window.scrollTo(0, 1);
    }, 0);
 });

This does not work on Tizen and I did not find any other way to make it hide automatically. Any ideas how to do that?

Written by