Open Links in new window

ybbor

Will not change his avata
Joined
Nov 16, 2003
Messages
5,773
Location
Chicago Suburbs
is there some html code i can use so that when i post a link, it opens in a new windw rather than in the same one? I know CFC does this by default, but for other places.

thank you in advance.
 
for a normal link you can use the target-operator:

HTML:
<a href="http://www.google.com" target="_blank">Google</a>
_blank opens the page in a new (blank) window
 
KaeptnOvi said:
for a normal link you can use the target-operator:

HTML:
<a href="http://www.google.com" target="_blank">Google</a>
_blank opens the page in a new (blank) window

yes! this is exactly what i was looking for, thank you. :thumbsup:
 
KaeptnOvi said:
for a normal link you can use the target-operator:

HTML:
<a href="http://www.google.com" target="_blank">Google</a>
_blank opens the page in a new (blank) window

I also thank you. This forum is just what the doctor ordered. :goodjob:
 
Back
Top Bottom