Skip to content

Instantly share code, notes, and snippets.

@runningrhetoric
Created July 24, 2012 20:04
Show Gist options
  • Save runningrhetoric/3172279 to your computer and use it in GitHub Desktop.
Save runningrhetoric/3172279 to your computer and use it in GitHub Desktop.
if external link add target:_blank
$("a[href^=http]").each( function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment