Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a web page that is intended to be loaded on a person's iPhone. When the page is loaded, I want to hide the status and address bar that is at the top. I have seen other sites do this. In an attempt to accomplish this, I have placed the following code in the section of my web page:

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=yes;" />
<script type="text/javascript">
  function page_Load() {
    setTimeout(function() { window.scrollTo(0, 1); }, 100);
  }
</script>

The "page_Load" function is triggered through the onload event of the page's body element. Oddly, when the page loads, the status/title bar is hidden, however, not the address bar.

How do I hide both the status/title bar and the address bar when a web page loads?

Thank you!

share|improve this question
Thanks for the tip on "initial-scale=1.0; maximum-scale=1.0; user-scalable=yes;". I tried "initial-scale=1.0; user-scalable=no;", which had a wired effect when changing between vertical/horizontal mode. – gregers Sep 2 '09 at 14:07

2 Answers

For those of you using jQuery here's an even simpler version:

$('body').scrollTop(1);
share|improve this answer
This is very neat - worked first time for me, on iPhone & Android, but I think I already had code in place to deal with any height issues. Thanks! – iamkeir Apr 12 '12 at 20:58
up vote 4 down vote accepted

Figured it out. It turns out my page needed to be "longer". From a absolute perspective, the sizing was correct, but I need to add a couple of pixels at the bottom. This hid the address bar as desired.

Thank you.

share|improve this answer
Hi Villager - I think I'm having the same issue as you. What did you use to solve this (if you remember) – citizenen Aug 7 '12 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.