How do I hide the address bar on iPhone?

前端 未结 11 951
情话喂你
情话喂你 2020-12-02 12:37

How do I hide the address bar on iPhone?

I tried two different methods so far:

  • The scroll down one pixel trick with JavaScript on page load

11条回答
  •  余生分开走
    2020-12-02 12:52

    Try:

    setTimeout(function () {
      window.scrollTo(0, 1);
    }, 1000);
    

    If using jQuery, put it at the end of $(document).ready();. The time-out allows for the browser to determine the height of the page...

提交回复
热议问题