JSFiddle - React, Tailwind, and code Playground
HTML
<a href="http:www.google.com" target="_blank" id="foo" >Click with mouse...</a>
JavaScript
$(document).live('click', function(e) {
if( e.which != 1 )
{
var target = e.target;
target.click();
e.preventDefault();
}
});