JSFiddle - React, Tailwind, and code Playground
HTML
<a href="http://www.yahoo.com" rel="external">Yahoo</a><br />
<a href="#">Internal</a>
JavaScript
$('a').click(function(e){
e.preventDefault();
window.open(this.href, '_blank');
});
<a href="http://www.yahoo.com" rel="external">Yahoo</a><br />
<a href="#">Internal</a>
$('a').click(function(e){
e.preventDefault();
window.open(this.href, '_blank');
});