How do I hide the address bar on iPhone?

前端 未结 11 935
情话喂你
情话喂你 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 13:00

    You can run the function when the site content is ready instead of using timeout

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

提交回复
热议问题