Hi
If I wanted to hide the URL address bar on phones, where can I put this script in my application...
Thanks
If I wanted to hide the URL address bar on phones, where can I put this script in my application...
B4X:
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
Thanks