Skip to content

Instantly share code, notes, and snippets.

@kanduvisla
Created June 21, 2011 09:40
Show Gist options
  • Save kanduvisla/1037536 to your computer and use it in GitHub Desktop.
Save kanduvisla/1037536 to your computer and use it in GitHub Desktop.
Open links in a new window XHTML STRICT
// External links:
$("a.external, 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