Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivan-kalachikov/4fec6d3aeabded1ad5d7795e65fad515 to your computer and use it in GitHub Desktop.
Save ivan-kalachikov/4fec6d3aeabded1ad5d7795e65fad515 to your computer and use it in GitHub Desktop.
js open external in new tab
$("a[href^=http]").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment