Skip to content

Instantly share code, notes, and snippets.

@pudly
Created January 1, 2019 20:49
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 pudly/9a96df8c56e70c352c1f88646a73f02a to your computer and use it in GitHub Desktop.
Save pudly/9a96df8c56e70c352c1f88646a73f02a to your computer and use it in GitHub Desktop.
[].forEach.call(document.querySelectorAll('a[href^=http]'), function(el) {
var url = el.href;
var base = window.location.hostname;
if (!url.indexOf(base)) {
el.setAttribute('target','_blank');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment