JSFiddle - React, Tailwind, and code Playground

by jonathon

HTML

<a href="#" class="test" id="test_1">Some text</a>
<a href="#" class="test" id="test_2">Some text</a>
<a href="#" class="test" id="test_3">Some text</a>

JavaScript

$(".test").click(function(){
   alert(this.id); 
});