View Full Version : Opening new browser window


Tiggertoes
02-23-2006, 02:28 PM
Hi,

When visitors click on links in my site, i would like a new browser window to open up. What code do I use?

Thank you!
Gina

Sephira
02-23-2006, 02:43 PM
<a href="yourlinkhere" target="_blank">

it specifies that your target is a new window. you can add whatever other code you want to the anchor tag, as long as the 'target="_blank"' is still there.

Tiggertoes
02-24-2006, 08:25 AM
It worked :)