Revision: 52791
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 1, 2011 15:09 by jackkeller
Initial Code
$('a').each(function() { Â Â var a = new RegExp('/' + window.location.host + '/'); Â Â if(!a.test(this.href)) { Â Â Â Â $(this).click(function(event) { Â Â Â Â Â Â event.preventDefault(); Â Â Â Â Â Â event.stopPropagation(); Â Â Â Â Â Â window.open(this.href, '_blank'); Â Â Â Â }); Â Â } });
Initial URL
Initial Description
Initial Title
Open External Links In New Window
Initial Tags
jquery
Initial Language
JavaScript