Created
November 8, 2018 14:20
-
-
Save ivan-kalachikov/ffebc1ef2d9e60a2da90ad6367b7a560 to your computer and use it in GitHub Desktop.
Open files and 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
//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