JSFiddle - React, Tailwind, and code Playground
by elias94xx
HTML
<a href="http://google.de" target="_blank" id="fake">google.de</a><br>
<a href="http://google.com" target="_blank">google.com</a>
JavaScript
$("#fake").on("click", function(e) {
e.preventDefault();
alert("Gotcha!");
});