Skip to content

Instantly share code, notes, and snippets.

@billkeller
Created November 23, 2010 13:20
Show Gist options
  • Save billkeller/711740 to your computer and use it in GitHub Desktop.
Save billkeller/711740 to your computer and use it in GitHub Desktop.
open links in a new window, like silly ass clients request all the time
$('.legal a').click(function(){
this.target = "_blank";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment