IE question about hidding addr bar

  • Thread starter Thread starter PiotrG
  • Start date Start date
P

PiotrG

Hi all,
is the way to open new IE window not including address bar?
Regards,
PiotrG
 
Yes, using Javascript you can do:

window.open('Page.htm','SomeName','location=no');

If the 'location' argument is set to 'no', as above, or ommitted the address
bar will not appear,
 
You mean from HTML/JavaScript? If so, set the 'loction' feature to 0 in
window.open() as in, window.open ('<url>', 'myWin', 'location=0');

Hi all,
is the way to open new IE window not including address bar?
Regards,
PiotrG
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top