4
I am using the following Javascript to hide the address bar in popup:
oncomplete="window.open('lista_persist.xhtml', 'newwindow', 'directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1, width=800, height=600');"
However the address bar is only hidden in IE, I tried that way too:
oncomplete="window.open('lista_persist.xhtml', 'newwindow', 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes, width=800, height=600');"
If anyone can help me, I’d appreciate it !
This is no longer possible in modern browsers due to security restrictions, as pointed out by this other answer: http://stackoverflow.com/questions/16603308/hiding-address-bar-in-all-browsers but if you want to hide the navigation bar on android, you can do this: http://stackoverflow.com/questions/4068559/removing-address-bar-from-browser-to-view-on-android
– Anderson Madeira
Thank you very much !
– Edson Cezar
@Andersonmadeira create an answer about this.
– DontVoteMeDown