We have a site where with simple JavaScript
<body onLoad="setTimeout(function() {window.scrollTo(0, 1)}, 100);">
We hide the address bar in most browsers (safari and our own browser for Android), this JavaScript bar works fine for most, but we noticed strange behavior on chrome, the page really scrolls down, but the address bar does not work Donβt hide! After loading the page, if the user scrolls a little with his finger, the address bar is usually hidden.
I also tried scrolling the whole page using JS, with the result of a full page scroll, and the address bar is still visible ...
Does anyone know if there is some kind of trick that I forgot to use, or if this feature is simply missing in Chrome?
source share