View Full Version : Popup Problems


tomwilliamson
01-17-2003, 03:51 PM
I really hope someone can help.
I basically want half of the links on one of my pages to open in a new window, but still some links not to.
All of the links are different.

I hope this is possible
Keep smiling
Tom

starlet
01-17-2003, 05:58 PM
I'm not sure i understand, but maybe just add target="_blank" to the ones you want to open in a new window, and dont add it to the ones you dont....does that help at all?

tomwilliamson
01-17-2003, 09:37 PM
I have got a website and a new page i have made contains links to other areas of my site.
The basic format of my site is that on the left hand side of the page is a menu image with mapped links.
The links to other relevant pages are in text format within the main area of the page.

I would like the links to other areas to open in a new window, but for the links in the menu image to still refresh as usual.

All of the links in text format are different and so need individual code, is there a way of doing this with relative simplicity.

to see the page in question go to http://1406atc.bravepages.com/links/atclinks.htm

please help or email me if you think you can help but dont understand - 1406@flying.to

Alcy
01-17-2003, 11:16 PM
To get the links to open in a new window, just target them to "_blank", or "_new". "_blank" will cause each link to open up in it's own window, whereas "_new" will cause the first link to open up in a new window, but all links afterwards will also open in that window.

<a href="page.html" target="_blank">Click here</a>

If you want every link to open to a new window, just add (before the links):

<base target="_blank">