Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A new instance of IE6

Status
Not open for further replies.

peekay

Programmer
Oct 11, 1999
324
ZA
While a browser is open with one of my web pages I wish to allow the client to click on a link to open a photo in a new instance of Internet Explorer - how would I do that
Thanks

PK Odendaal
 
<a href="img.jpg" target="_blank">open image in new window</a>

or

<a href="#" onclick="window.open('img.jpg'); return false;">open image</a>

either will work.

Rob

Every gun that is made, every warship launched, every rocket fired, signifies in the final sense a theft from those who hunger and are not fed, those who are cold and are not clothed - Eisenhower 1953
 
Thanks you very much crazyboybert.
I am not sure where to place this code. I am using a hyperlink control to initiate this event. Must the code be between the hyperlink control tags.
Thanks


PK Odendaal
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top