views:

48

answers:

3

Hi,

I want to hide address bar and status bar in iphone because of more space. I tried this code window.scrollTo(0, 1); but this is not working in iphone. Please help me. Thanks in advance.

+1  A: 

For hiding the title bar, you need a setTimeout() (apparently).

window.onload = function() {
    setTimeout(function() { window.scrollTo(0, 1) }, 100);
};
alex
A: 

Try something like

window.onload = function() {
    window.scrollTo(0, 0);
};

This should hide the address bar.

Erik
A: 

Try to put at the very end of the BODY tag a script with the scroll command.

<script>window.scrollTo(0,1)</script>

It works well in our app on both iPhone and android.

Mic