JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" id="button">
BUTTON
</a>
JavaScript
$('#button').click(function(event){
alert('clicked')
event.preventDefault();
})
<a href="#" id="button">
BUTTON
</a>
$('#button').click(function(event){
alert('clicked')
event.preventDefault();
})