Gossamer Forum
Home : Products : Links 2.0 : Discussions :

How to make links open in new window

Quote Reply
How to make links open in new window
How do you make the links open in a new window?
Quote Reply
Re: [morpheus9] How to make links open in new window In reply to
In your link.html look for this html code:
Code:
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>

Add to the end of it:

Code:
" target="_blank">

Hope that helps


Quote Reply
Re: [Ian Conza] How to make links open in new window In reply to
For cross-browser compatibility you'd be better with target="newwin"
Quote Reply
Re: [Ian Conza] How to make links open in new window In reply to
thanks! Cool