Skip to content

Instantly share code, notes, and snippets.

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 skillmatic-co/2628499769383b3bbbeb24a739544d08 to your computer and use it in GitHub Desktop.
Save skillmatic-co/2628499769383b3bbbeb24a739544d08 to your computer and use it in GitHub Desktop.
Open all external links in a new window
$('article.post .entry-content a').not('[href*="mailto:"]').each(function () {
var isInternalLink = new RegExp('/' + window.location.host + '/');
if ( ! isInternalLink.test(this.href) ) {
$(this).attr('target', '_blank');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment