Advertisement
espmartin

Untitled

Jun 19th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function externalLinks() {
  2.     if (!document.getElementsByTagName) return;
  3.     var anchors = document.getElementsByTagName("a");
  4.     for (var i=0; i<anchors.length; i++) {
  5.         var anchor = anchors[i];
  6.     if (anchor.getAttribute("href") && anchor.getAttribute("rev") == "external")
  7.         anchor.target = "_blank";
  8.     }
  9. }
  10. window.onload = externalLinks;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement