Last active
February 19, 2016 18:48
-
-
Save lackneets/ad56e1416325a5209c9b to your computer and use it in GitHub Desktop.
Auto make external links open 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
$(document).on('mouseenter touchstart', 'a[href]:not([target])', function(){ | |
if(this.getAttribute('href').match(/^(https?:)?\/\//)){ | |
this.setAttribute('target', '_blank'); | |
} | |
}); |
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
$(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