Skip to content

Instantly share code, notes, and snippets.

@Huskie
Created April 26, 2012 22:40
Show Gist options
  • Save Huskie/2503815 to your computer and use it in GitHub Desktop.
Save Huskie/2503815 to your computer and use it in GitHub Desktop.
jQuery to open links in with rel="external" in new tab/window
$('a[rel*=external]').click(function() {
window.open(this.href);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment