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();
});
by tea4two
<a href="#" id="btn">クリックしてね☆</a>
$('#btn').on('click', function(event) {
console.log(event);
event.preventDefault();
});