Specification du html 4 (anglais)This attribute describes the relationship from the current document to the anchor specified by the href attribute. The value of this attribute is a space-separated list of link types.
Specification du html 4 (francais)Cet attribut décrit la relation partant du document courant vers l'ancre spécifiée par l'attribut href. La valeur de cet attribut est une liste de types de lien séparés par des espaces.
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;