Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to hide the address bar in iOS 7 Safari? [duplicate]

Is it possible to hide the address bar in iOS 7?

I am currently using the below to do this in iOS 6 but I just updated xCode and tested in iPhone Sim and iOS 7 Safari is not responding to this.

js:

window.addEventListener("load",function() {
    // Set a timeout...
    setTimeout(function(){
        // Hide the address bar!
        window.scrollTo(0, 1);
    }, 0);
});
like image 744
Daimz Avatar asked Sep 10 '25 20:09

Daimz


1 Answers

It does not work anymore. Here is a very detailed article around the changes in IOS7

like image 62
valentinvieriu Avatar answered Sep 12 '25 11:09

valentinvieriu