View Full Version : Text Link


TrinidadHunni
04-11-2004, 11:43 PM
Uhm I was looking in the
HTML
Section in "Section 2" about Text Links, well, I know how to do a text link but what I am looking for is a Text Link that when you click it pop's up, so like if you click the link, it doesn't use that same page, it opens another Window.....Does anyone know the code? I would appreciate it!!

MyNameOwnsYou
04-11-2004, 11:47 PM
It's pretty simple
<a href="link" target="what the window is'> text </a>

Note that the window name has to be different for every link, unless you want the new page to be in the window.

MyNameOwnsYou
04-11-2004, 11:49 PM
It's pretty simple
<a href="link" target="window name"> text </a>
Note that the window name has to be different for every link, unless you want the new page to be in the window.

Demented
04-11-2004, 11:51 PM
So you want something that when you click it, it just opens a new window, and then has the URL of the link in it? That's easy.
The tag would be <target"_blank">. Here's an example:
<a href="URL Here" target="_blank">

TrinidadHunni
04-12-2004, 04:01 AM
Thanks you guys!! That helped alot!!!!!