Is it possible to hide the address bar in Safari on iPhone?

10,469

You can declare display mode in Web App Manifest.

"display": "standalone"

The application will look and feel like a standalone application. This can include the application having a different window, its own icon in the application launcher, etc. In this mode, the user agent will exclude UI elements for controlling navigation, but can include other UI elements such as a status bar.

The only gotcha is that user has to add your web app to homescreen first.

Share:
10,469
Admin
Author by

Admin

Updated on June 04, 2022

Comments

  • Admin
    Admin almost 2 years

    I saw that it was impossible in iOS7 but now with iOS9. Is it possible to hide the address bar with javascript?

    I want to do this for the iPhone and iPad users.

    Thanks!