Skip to content

Instantly share code, notes, and snippets.

@oscarmorrison
Last active December 3, 2016 17:08
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 oscarmorrison/588436e583b2795554dea04a9f82315a to your computer and use it in GitHub Desktop.
Save oscarmorrison/588436e583b2795554dea04a9f82315a to your computer and use it in GitHub Desktop.
Make all external links open in new tab
$('a[href^=http]').each(function(){
if(this.href.indexOf(location.hostname) < 0) {
$(this).attr({target: '_blank'});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment