Using jQuery to target=blank

Use jQuery to open links in a new tab or window when clicked.

Code

$('a[data-rel*=external]').click( function() {
window.open(this.href);
return false;
});