create link to open in new window

mammu

New Member
I have installed flash chat and created a link on navbar.
But it opens in same window when clicked.

This is the code I have in my navbar for flash chat...
PHP:
<td class="vbmenu_control"><a href="http://www.myforumname.com/chat/flashchat.php$session[sessionurl]">Chat Room</a></td>

How to create a link which will open in a new window?
 
Replace this:

Code:
<td class="vbmenu_control"><a href="http://www.myforumname.com/chat/flashchat.php$session[sessionurl]">Chat Room</a></td>

With this:
Code:
<td class="vbmenu_control"><a href="http://www.myforumname.com/chat/flashchat.php$session[sessionurl]" target="_blank">Chat Room</a></td>
 
Thanx Justin that worked.
BTW there is no option in flashchat about this. It is installed by install.php and don't have any product. So no option to configure in admincp.
Though it has some controls in its admin.php but all are associated with flashchat room functions.
 
Back
Top