JSFiddle - React, Tailwind, and code Playground

by Francesco Frustaci

HTML

<html>
<body>      
<a href="#" id="kana1" class="konbo">click me 1</a>
<a href="#" id="kana2" class="kinta">click me 2</a>
</body>
</html>

JavaScript

$(document).ready(function() {
    $("a").click(function(event) {
        alert(event.target.id+" and"+$(event.target).attr('class'));
    });
});