Skip to content

Instantly share code, notes, and snippets.

@becdetat
Created March 28, 2012 03:49
Show Gist options
  • Select an option

  • Save becdetat/2223432 to your computer and use it in GitHub Desktop.

Select an option

Save becdetat/2223432 to your computer and use it in GitHub Desktop.
jQuery snippet to open external links in a new window - no more target="_blank"
$(function(){
$('a[rel="external"], a[href^="http://"]').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