Skip to content

Instantly share code, notes, and snippets.

@olimortimer
Created June 1, 2012 08:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olimortimer/2850505 to your computer and use it in GitHub Desktop.
Save olimortimer/2850505 to your computer and use it in GitHub Desktop.
JS: New window rel="external"
$(function() {
// Open rel="external" in a new 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