Link to home
Start Free TrialLog in
Avatar of stevenvervliet
stevenvervliet

asked on

Open Link in NEW window???

Hello experts,

I have created this scrolling text box with links, wich i import
from a .txt file.
When i test it, it works ok but when i click on the links
the new link opens up in the same window... and i dont want that@# i want them to open in a new window.

In txt file i use html to set up the font colour and whether it is a link or not.
Ex.
<FONT FACE="Arial" SIZE="20" COLOR="#0033FF"><B><u><a href="http://www.eurotribe.fgov.be">http://www.eurotribe.fgov.be</a></u></font>
--------------
Now i should need some code to put in front or after it
to let it know to open in a new window. Those anybody knows wich code this is and where i can place this inside. You're help is very appreciated.

Kind regards
Steven

Avatar of Zeffer
Zeffer
Flag of New Zealand image

put.....target="_blank"....in like this..and a close </a> tag

<a href="http://www.eurotribe.fgov.be" target="_blank></a>


Z
ASKER CERTIFIED SOLUTION
Avatar of rootdir
rootdir

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of stevenvervliet
stevenvervliet

ASKER

Thank you Rootdir, keep up the good work.