MyBB Community Forums

Full Version: Open Link In New Window ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ive setup a blog and placed a link to it on my forum, heres the link :
<a href="{$mybb->settings['bburl']}/blog" class="blog">Blog</a>

But how do i make it navigate to a new window , rather than opening in the same window ?
Got it guys

<a href="{$mybb->settings['bburl']}/blog" target="_blank" class="blog">Blog</a>
Change it to:
<a href="{$mybb->settings['bburl']}/blog" class="blog" target="_blank">Blog</a>

This will open in a new tab unless it is not a tabbed browser. I recommend using tabs as it may be picked up by some popup blockers otherwise.
Why does it matter what order the target and class attributes are in...?? Not all tabbed browsers open _blank links in a new tab, IE8 doesn't.
Forgive me for my mistake sir *walks away scared*