View Full Version : new window


church_punk
09-21-2003, 08:54 PM
Does anyone know the code to open a text link in a new window?

Valkyrie
09-21-2003, 08:58 PM
in the code for the link, write target="new"

so your code should look something like this:
<a href="url" target="new">Name of link</a>

Dude128
09-21-2003, 08:58 PM
add target="_blank" to open each link in a new window or target="new" if you want the first one clicked to open a new window, then have others open in that same window.

church_punk
09-21-2003, 09:16 PM
Thank you bunches!