link open in new browser window?

liunx

Guest
How can I get a link to open in a new browser window?<!--content-->If you're not fussy about what size or properties the new window has, then just enter the TARGET property to you links with the _blank value in it.<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"somepage.html" target="_blank"> text or image </a><br />
<br />
If you are looking to control the window properties such as toolbars and such, then a bit of javascripting is required.<!--content-->You need to add a target attribute to the anchor. I.e.<br />
<br />
<A href=http://www.htmlforums.com/archive/index.php/"link.htm" target="_blank">the link</A><br />
<br />
As simple as that, hope that helps.<!--content-->Icck you got there a seconf before me ;):confused:<!--content-->
 
Back
Top