Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created September 18, 2020 10:50
Show Gist options
  • Save hsleonis/48dfc109b8f72045652c88eddb7c8321 to your computer and use it in GitHub Desktop.
Save hsleonis/48dfc109b8f72045652c88eddb7c8321 to your computer and use it in GitHub Desktop.
Shopify theme menu new tab on external url
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