Make All Anchor Links Open New Windows
$("a").filter(function() {
return this.hostname && this.hostname.replace('www.','') !== location.hostname.replace('www.','');
}).attr('target', '_blank');
Make All Anchor Links Open New Windows
$("a").filter(function() {
return this.hostname && this.hostname.replace('www.','') !== location.hostname.replace('www.','');
}).attr('target', '_blank');