Skip to content

Instantly share code, notes, and snippets.

@odessy
Created June 14, 2025 14:13
Show Gist options
  • Save odessy/a783dc9f7d4c1ed41cad8da23e154df3 to your computer and use it in GitHub Desktop.
Save odessy/a783dc9f7d4c1ed41cad8da23e154df3 to your computer and use it in GitHub Desktop.
var links = document.links;
for (let i = 0, linksLength = links.length ; i < linksLength ; i++) {
if (links[i].hostname !== window.location.hostname) {
links[i].target = '_blank';
links[i].rel = 'noreferrer noopener';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment