Skip to content

Instantly share code, notes, and snippets.

@lackneets
Last active February 19, 2016 18:48
Show Gist options
  • Save lackneets/ad56e1416325a5209c9b to your computer and use it in GitHub Desktop.
Save lackneets/ad56e1416325a5209c9b to your computer and use it in GitHub Desktop.
Auto make external links open in new tab
$(document).on('mouseenter touchstart', 'a[href]:not([target])', function(){
if(this.getAttribute('href').match(/^(https?:)?\/\//)){
this.setAttribute('target', '_blank');
}
});
$(document).on('mouseenter touchstart', 'a[href]:not([target])', function(){
if(this.getAttribute('href').match(/^(https?:)?\/\//) && !this.getAttribute('href').match(location.host)){
this.setAttribute('target', '_blank');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment