/ Published in: JavaScript
Usage:
<a href="http://www.whaterver-your-site-is-called.com/" rel="external">Some other site</a>
<a href="http://www.whaterver-your-site-is-called.com/" rel="external">Some other site</a>
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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.getAttribute("rel") == "external") anchor.target = "_blank"; } } window.onload = externalLinks;
URL: http://www.sitepoint.com/standards-compliant-world/