JSFiddle - React, Tailwind, and code Playground
HTML
<ul id="menu">
<li><a href="">real</a>
</ul>
<div id="examplediv" style="background:red;height:20px;width:60px"></div>
<div id="clk"> click here</div>
JavaScript
$("#menu>li>a").click(function(){
$("#examplediv").html( $("#menu>li>a").text());
});