Hi,
I want to hide address bar and status bar in iphone because of more space. I tried this code window.scrollTo(0, 1); but this is not working in iphone. Please help me. Thanks in advance.
Hi,
I want to hide address bar and status bar in iphone because of more space. I tried this code window.scrollTo(0, 1); but this is not working in iphone. Please help me. Thanks in advance.
For hiding the title bar, you need a setTimeout()
(apparently).
window.onload = function() {
setTimeout(function() { window.scrollTo(0, 1) }, 100);
};
Try something like
window.onload = function() {
window.scrollTo(0, 0);
};
This should hide the address bar.
Try to put at the very end of the BODY
tag a script with the scroll
command.
<script>window.scrollTo(0,1)</script>
It works well in our app on both iPhone and android.