Skip to content

Instantly share code, notes, and snippets.

@ivan-kalachikov
Created November 8, 2018 14:20
Show Gist options
  • Save ivan-kalachikov/ffebc1ef2d9e60a2da90ad6367b7a560 to your computer and use it in GitHub Desktop.
Save ivan-kalachikov/ffebc1ef2d9e60a2da90ad6367b7a560 to your computer and use it in GitHub Desktop.
Open files and external links in new tab
//opening external links in new tab
$(document.links).filter(function() {
return this.hostname != window.location.hostname || $(this).attr('href').split('/').pop().indexOf('.') > -1;
}).attr({
'target': '_blank',
'rel': 'noopener'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment