How do I do this?

conor

New Member
That's not opening in a new window. It's an iframe. You could do that with JavaScript, try jQuery.

Or if you just want it to open in a new window then try this:

Code:
<a href="path/to/file" target="_blank"><img/></a>
 
Top