opening up a page in a new browser

  • Thread starter Thread starter Des
  • Start date Start date
D

Des

Can anyone tell me how to open up a page in a new browser. The
exsisting code is.....


<a href="01.aspx"><img src="Images/3.14.jpg"
width="191" height="180" alt="" /></a>
<a href="02.aspx"><img src="Images/3.16.jpg"
width="191" height="180" alt="" /></a>
<a href="03.aspx"><img src="Images/2.8.jpg"
width="191" height="180" alt="" /></a>
<a href="04.aspx"><img src="Images/2.3.jpg"
width="191" height="180" alt="" /></a>


Tia

Desmond.
 
Use the target attribute. For example:
<a href="01.aspx"><img src="Images/3.14.jpg"> width="191" height="180"
alt="" target="_blank" />link</a>
 
Back
Top