SEO Class in Chicago, IL
Learn How To Optimize Your Website on July 26, 2013
High Rankings is offering a 1-day customized SEO training class in Chicago. Class size is limited so please sign-up now if you want in!
Are you a Google Analytics enthusiast?
Share and download Custom Google Analytics Reports, dashboards and advanced segments--for FREE!

www.CustomReportSharing.com
From the folks who brought you High Rankings!
More SEO Content
Rel="ext"
#1
Posted 24 February 2012 - 12:30 PM
We have a link to our site from an authoritative site that is NOT a nofollow link, but which does have a tag that says rel="ext".
I don't know much about that tag. From what I have read, it just marks the target page as being external to the site that the link is on. It doesn't seems like that would have any effect upon our site's search results. Am I correct in thinking that way?
Thanks,
Tim
#2
Posted 24 February 2012 - 02:33 PM
#3
Posted 24 February 2012 - 03:32 PM
#4
Posted 24 February 2012 - 03:44 PM
#5
Posted 24 February 2012 - 04:25 PM
To get around that, you can run a JavaScript that goes through all of the page's anchors when it loads, looking for that rel="external" bit, and if it finds it, it should set the link's target to _blank.
It works, but there's really no good reason to do it. I really ought to just strip that code out.
#6
Posted 25 February 2012 - 08:35 AM
Ah, that explains why I get validation errors when I use that attribute.
I wonder, is there an alternative to target = "_blank" that isn't deprecated and which doesn't rely on Javascript?
#7
Posted 25 February 2012 - 09:54 AM
#8
Posted 26 February 2012 - 10:47 AM
The original post was asking about rel=ext which doesn't seem to exist.
#9
Posted 26 February 2012 - 12:24 PM
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;
But you can change the line anchor.getAttribute("rel") == "external") to anchor.getAttribute("rel") == "lederhosen") if you want, as long as you then add rel="lederhosen" to your links.
#10
Posted 26 February 2012 - 11:05 PM
The tag I asked about was indeed "ext", not "external", but I have noticed a few citations on the web about the "ext" tag, so perhaps it's an alternate for "external".
Anyway, thanks again to everyone. I think I won't be concerned about it.
- Tim
#11
Posted 27 February 2012 - 06:11 AM
The related attribute has only ONE "official" value that visual user agents (browsers) should observe and obey, and that is the value of "stylesheet" when used in a link element.
Beyond that, neither the related or the reference attributes have specific uses, and are free for whatever use third parties put them to.
And to be honest, if the search engine engineers had not developed rel="nofollow" for their own purpose, the vast majority of SEO "experts" probably wouldn't even know that such attributes exist!
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users










