Skip to content

Instantly share code, notes, and snippets.

@imbolc
Created August 5, 2018 02:16
Show Gist options
  • Save imbolc/0119a71ec68424ef1bbef386dc19427a to your computer and use it in GitHub Desktop.
Save imbolc/0119a71ec68424ef1bbef386dc19427a to your computer and use it in GitHub Desktop.
Set target="_blank" attribute for all the external links
!function () {
// target="_blank" for external links
var origin = location.host.replace(/www\./, '')
Array.prototype.slice.call(document.getElementsByTagName('a'))
.filter(function (a) { return a.host && !a.host.match(origin + '$') })
.forEach(function (a) { a.setAttribute('target', '_blank') })
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment