언어 설정

Menu
Sites
Language
Hide address bar in the browser

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?

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

3 댓글
Lakshmi Grandhi
Hi Dima Malenko, Are you trying to change internet application availble in Tizen. The internet application in Tizen framework is a native app, i don't think you can do it using javascript code for hidding address bar.
Dima Malenko
Hi Lakshmi, I want to do that from a regular web page opened in the browser. I want my page to look like an application as much as possible and also get some more screen real estate by hiding the address bar. Since the address bar hides, when page content is scrolled down, I believe there should be a way to do that programmatically.
Lakshmi Grandhi
I tried using ScrollTo window event, its working fine in simulator, but on emulator its not working I created bug in jira https://bugs.tizen.org/jira/browse/TWEB-112