Open All Links in new tab?

Status
Not open for further replies.

RNBxBeatz

Active Member
323
2011
9
0
Hi,

I was wondering if there was some sort of plugin for wordpress which allows all links (Including Internal Links) to open in a new tab when clicked?

Please comment if you know.

Thanks!
 
3 comments
Hey, try this in your header:

Code:
<script language=javascript>
/*
	Kevin Yank
	http://www.sitepoint.com/authorcontact/48
*/
function externalLinks()
{
  if (!document.getElementsByTagName) return;
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++)
  {
      var anchor = anchors[i];
      if(anchor.getAttribute("href"))
		anchor.target = "_blank";
  }
}
window.onload = externalLinks;

</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->

source: http://www.javascriptbank.com/make-link-open-in-new-tab-window.html

NOT SURE if that works, i just GOOGLE'd it.
 
I have a bbcode plugin that makes bbcode works for wordpress like [ img ] [ /img ] etc2.. aside from that, comes with the code is making [ url ] [ /url ] open in a new tab when clicked..

so if you're interested just pm me.
 
Status
Not open for further replies.
Back
Top