View Full Version : Open New Window


Tracey
09-22-2004, 01:12 AM
How do I make a new window open when somebody clicks on a link.

kitty_katt07
09-22-2004, 02:42 AM
< a href="URL" target=new>text< /a>

pb&j
09-22-2004, 05:03 AM
actually, it is ...

<a href="URL" target="_blank"> text or image here </a>

that was close though ;)

kitty_katt07
09-22-2004, 05:47 AM
both work, i use target=new =P

pb&j
09-22-2004, 02:14 PM
it depends on what action you want to create.

"new" will create a new window and give it the name of "new". any other links with the the "new" target will probably open into that same window if it is still open.

"_blank" will create a new window each time the link is clicked on.

Tracey
09-23-2004, 09:26 PM
Thanks to both of you.