Forum Moderators: skibum

Message Too Old, No Replies

Hiding Internet Explorer's or Netscape's toolbars

         

michaelday

4:11 pm on Oct 30, 2001 (gmt 0)

10+ Year Member



How do I create a link to a site so that when someone clicks on that link they don't see IE's or Netscape's toolbar so that they don't see that site's URL and can not bookmark it(at least not easily)?
Thanks.

Drastic

7:11 pm on Oct 31, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



In IE, I think you have to open a new window, which may be what you wanted anyway.

This snippet should do the trick:

<a href="javascript:;" onClick="window.open('http://yahoo.com','windowname','toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes'); return false">Open new page</a>

Just change "no" to yes (or remove the setting as yes is usually the default) for options you do want.