Skip to content

Instantly share code, notes, and snippets.

@arvi
Created October 4, 2015 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arvi/25e26e3d293469ad0df0 to your computer and use it in GitHub Desktop.
Save arvi/25e26e3d293469ad0df0 to your computer and use it in GitHub Desktop.
var links = document.querySelectorAll('article.content a');
for (var i = 0, length = links.length; i < length; i++) {
if (links[i].hostname != window.location.hostname) {
links[i].target = '_blank';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment