Given: page without scrolling (fullscreen slider)

Conditions: Basic Android and iOS browsers must be supported.

Problem: on small screens of mobile devices, the address bar takes up a bit of space. Yes, and the slider does not look presentable ...

Question: Is there a way to hide the hated address bar using css or javascript / jQuery?

    3 answers 3

    I think no. After all, the address bar is a browser API and you cannot influence the outside using the tools listed by you on the interface.

    • Rather GUI. But the direction is right, this can not be done. From JS. - user207618

    You can do differently. Add a link (as an application) to your resource https://developer.mozilla.org/en-US/docs/Web/Manifest

    • Try to write more detailed answers. Explain what is the basis of your statement? - Nicolas Chabanovsky
    @media (max-width: 767px){ .your class {display:none} } 
    • The question is not about the page element, but about the address bar of the browser. So that, for example, when loading the main page on a mobile device, the slider is turned full screen and the browser elements do not interfere at hand ... - Constantine Tretyakoff