JSFiddle - React, Tailwind, and code Playground
by Alfie
HTML
<nav >
<ul id="ul">
<li ><a id="hello1" href= " ">hello1</a></li>
<li ><a id="hello2" href= " ">hello2</a></li>
</ul>
</nav>
JavaScript
$(document).ready(function(){
$('a').click(function(){
var mytext= $(this).attr('id');
alert(mytext);
});
});