Skip to content

Instantly share code, notes, and snippets.

@koomai
Created December 23, 2011 16:14
Show Gist options
  • Save koomai/1514600 to your computer and use it in GitHub Desktop.
Save koomai/1514600 to your computer and use it in GitHub Desktop.
Javascript: jQuery Open external links in new window
$(document).ready(function() {
$('a[rel="external"]').click( function() {
window.open( $(this).attr('href') );
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment