View Full Version : How do I make links pop up?


immaloser
03-11-2004, 11:02 PM
How do I make links pop up in a new window?

MaGiCSuN
03-11-2004, 11:18 PM
http://www.lissaexplains.com/javascript4.shtml#window

or if you just mean a regular window you add this to the <a> tag:

target="_blank"

so that it looks like this:

<a href="urlhere.html" target="_blank">link name</a>

Love,
Mirna

immaloser
03-11-2004, 11:21 PM
thanks!!