Hello!

Advise the way that you can hide the navigation bar on iOS devices, after the page is fully loaded.

In the screenshot, I circled this panel in red.

screenshot

This feature is used, for example, in the mobile version of VK .

    1 answer 1

    You can try to add special meta tags.

     <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-touch-fullscreen" content="yes" /> 

    More is written here .

    Another variant:

      window.addEventListener("load",function() { // Set a timeout... setTimeout(function(){ // Hide the address bar! window.scrollTo(0, 1); }, 0); }); 
    • Not achieved the desired effect - tiNtw
    • Added in response to the second option. - Gena Tsarinny