Page 1 of 1

how to make a link open in a new window?

Posted: Sun Nov 05, 2006 7:02 am
by Shurtugal
Hey all!

I was wondering how to make a link in html or BBcode that will open in a new window. the way I know how to it now is

words

I have no experience whatsoever with this kind of stuff..... so thanks!

Posted: Sun Nov 05, 2006 8:18 am
by stuifzand
for html the code is:

Code: Select all

<a href="http://www.thisismysite.com" target="_blank">Here's the link</a>
The target="_blank" part does the trick here. If you want it to open in the same window you can use _parent in stead of _blank

In most phpbb forums links in bbcode do automatically open in a new window, but I noticed sometimes it doesn't work. I don't know why though.

Posted: Sun Nov 05, 2006 9:25 pm
by Shurtugal
OK, cool thanks!