Skip to content

Instantly share code, notes, and snippets.

View becdetat's full-sized avatar

Rebecca Scott becdetat

View GitHub Profile
@becdetat
becdetat / gist:2223432
Created March 28, 2012 03:49
jQuery snippet to open external links in a new window - no more target="_blank"
$(function(){
$('a[rel="external"], a[href^="http://"]').click(function(){
window.open(this.href);
return false;
});
});