Created
June 14, 2025 14:13
-
-
Save odessy/a783dc9f7d4c1ed41cad8da23e154df3 to your computer and use it in GitHub Desktop.
open external links in new tab https://help.shopify.com/en/manual/online-store/themes/themes-by-shopify/vintage-themes/customizing-vintage-themes/open-external-links-in-new-tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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