rel=’external’ tag
March 19th, 2008 | by Ankit |So the question is what cud be the possible effects of the rel=”external” tag? what are its use ?
Umm … after having a long research about this tag i had seen many people think that it is like nofollow tag. It helps in prevent PageRank Pass .. this is not at all true !!
So what exactly is rel=’external’ ?
rel=’external’ is a part of xhtml code necessary to open a new window, but it requires javascript to execute this action.
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i
if (anchor.getAttribute(”href”) &&
anchor.getAttribute(”rel”) == “external”)
anchor.target = “_blank”;
}
}
window.onload = externalLinks;
So the conclusion is that it will still pass Page Rank to the linking site. The only thing it will do is to open a site in a new window like target=”_blank”.
Source: DigitalPoint
If you like this post then please consider subscribing to my Full RSS feed. You can also subscribe by Email and have new posts sent directly to your inbox.
If you enjoyed this post, make sure you subscribe to my RSS feed!










By andymurd on Mar 19, 2008
You can also use CSS to place a small icon next to your links marking them as external (modern browsers only, so not IE6):
a[rel="external"] { background-image: url(/gfx/external.png)}
By Ankit on Mar 19, 2008
Umm yes it will work !! Thanks for sharing !
By mark on Apr 2, 2008
Nice snippet. I use jQuery to do something like this too. All my external links are automatically _blank.
By Olaf on Aug 5, 2008
Nice tip
By Dewey on Sep 15, 2008
Thanks for the info dude, I’ve been researching for this rel=”external”. Thanks for giving light on this matter.