JSFiddle - React, Tailwind, and code Playground
by telizpablo
HTML
<a href="http://www.google.com" onclick="return confirm_alert(this);">Click Me</a>
<a href="http://example.com/"
onclick="return confirm('Please click on OK to continue.');">click me too</a>
JavaScript
function confirm_alert(node) {
return confirm("Please click on OK to continue.");
}