I want to hide/remove address bar of a child document which is opened using
window.open();
.
JavaScript
newwin = window.open('child.html',
'newwin',
'width = 900,
height = 750,
toolbar = no,
scrollbars = no,
location = 0,
resizable = no
');
this code actually disables the address bar, but does not hide it.
I don't want to show address bar to end users.