/ Published in: jQuery
parse every anchor (<a href="#"></a>) on your page
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Open external links in new windows using jquery $('a[href^="http://"]').filter(function() { return this.hostname && this.hostname !== location.hostname; }).attr('target', '_blank');
URL: http://www.andrewgreig.com/2010/05/use-jquery-to-open-all-external-links-in-a-new-window/