JSFiddle - React, Tailwind, and code Playground

by muthusamy

HTML

<a style="cursor:pointer; " href="javascript:void(0)">Text 1</a>
<a style="cursor:pointer;" href="javascript:void(0)">Text 2</a>
<a style="cursor:pointer;" href="javascript:void(0)">Text 3</a>

JavaScript

$(document).ready(function(){

$("a").on('click',function(){
  alert($(this).text());
});

});