JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<a href="#" id="btn">クリックしてね☆</a>

JavaScript

$('#btn').on('click', function(event) {
    console.log(event);
    event.preventDefault();
});