I have to hide the address bar of a browser. I am using this code:
var winFeature =
'location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes';
window.open('Result.html','null',winFeature);
In many solutions, just the location=no
attribute can hide the address bar (in both IE & Chrome). However, this didn't work for me (even in IE & Chrome).
Finally, I found a MSDN article that describes how location=no
simply hides the back/forward/stop navigation buttons, and makes the address bar read-only.
Is there any solution to hide the entire address bar by ignoring above MSDN article? I am testing in IE and Google Chrome.