Entrepreneur, Web Developer and Facilitator from God's Own Country

Opening all links in new window using jquery (_blank)

This will do it…

$("a[@rel~='external']").click( function() {

window.open( $(this).attr('href') );

return false;

});