Skip to content

Instantly share code, notes, and snippets.

@megatux
Created January 18, 2012 14:09
Show Gist options
  • Save megatux/1633163 to your computer and use it in GitHub Desktop.
Save megatux/1633163 to your computer and use it in GitHub Desktop.
make links with attrib rel=external open in new window
$('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