Open link in new browser screen

Can someone help me with how do I make a link open to a new window?<br />
<br />
I am currently using the old method of opening a link and hitting the back button to get back to the home page.<br />
<br />
Thanks<!--content-->try this:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.eye4u.com" target="_blank">eye4u</a><!--content-->Here is a pretty simple way:<br />
<br />
<A HREF=http://www.htmlforums.com/archive/index.php/"http://www.site.com/page.html"<br />
TARGET="resource window"><br />
Text Text Text</A><br />
<br />
or<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.site.com/page.html" target="new_window">Text</A><!--content-->You guys are too good, worked like a charm!!!! Thanks so much.<!--content-->If you code in XHTML 1.0 Scrict or XHTML 1.1, which doesn't allow target, you can also use JavaScript.<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"whatever.html" onclick="window.open(this.href);return false;">some page</a><!--content-->
 
Back
Top