Skip to content

Instantly share code, notes, and snippets.

@nummi
Created March 22, 2010 19:07
Show Gist options
  • Save nummi/340404 to your computer and use it in GitHub Desktop.
Save nummi/340404 to your computer and use it in GitHub Desktop.
$('a[rel=external]').click(function() {
var newWindow = window.open($(this).attr('href'), '_blank');
if(newWindow) { if(newWindow.focus) { newWindow.focus(); return false; } }
newWindow = null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment