JSFiddle - React, Tailwind, and code Playground
HTML
<a href="https://www.google.com" target="_BLANK" onclick="return openlink();">Link 1</a> | <a href="https://www.google.com" target="_BLANK">Link 2</a>
JavaScript
function openlink() {
alert("Hello World!");
return false;
}