Skip to content

Instantly share code, notes, and snippets.

@Rafailong
Created January 29, 2014 18:26
Show Gist options
  • Save Rafailong/8693922 to your computer and use it in GitHub Desktop.
Save Rafailong/8693922 to your computer and use it in GitHub Desktop.
Open external links in a new tab/window
$('a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
if(!a.test(this.href)) {
$(this).click(function(event) {
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment