Click to See Complete Forum and Search --> : How can we remove address bar of browser


dummyahuja
October 29th, 2010, 09:01 AM
I am trying to remove address bar of browser from javascript. I am writing the following code

window.open('newWindow.aspx', 'new', 'width=' + width + ', height=' + height + ', toolbar=no,location=0, left=' + left + ',top=' + top + 'screenX=' + left + ',screenY=' + top + ', directories=no, menubar=no,scrollbars=no,resizable=no, status=no');
please help,

Thanks in advance

TechGnome
October 29th, 2010, 11:18 AM
The parameter you're looking for is "location"
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml

-tg

dummyahuja
October 29th, 2010, 12:14 PM
Its not working.

QuinnJohns
November 2nd, 2010, 12:42 PM
If you are trying to do a popup type window, this site may help.

http://www.ehow.com/how_5218322_remove-address-bar-javascript.html

Regards,
Quinn
-if it helps, please rate up.