In the Menu area you click on the website button it opens in the same window as the forum, I need it to open in a blank tab.
Code:
- <script>
- /*Add Menu Buttons
- Created By Wrighty
- support.virtualforums.co.uk*/
- var menu = document.getElementById('welcome_table').getElementsByTagName('td')[2];
- function do_menu(img_src,link){
- menu.innerHTML+= " :: <a href="+link+"><img src='"+img_src+"' border=0></a>";
- }
- do_menu('http://i185.photobucket.com/albums/x20/magedesigns/website-1.gif','http://fdestiny.webs.com/');
- </script>
Thanks
Find:
menu.innerHTML+= " :: <a href="+link+"><img src='"+img_src+"' border=0></a>";
Replace With:
menu.innerHTML+= " :: <a href="+link+" target=_blank><img src='"+img_src+"' border=0></a>";
Thanks it worked