JSFiddle - React, Tailwind, and code Playground
by Neeraj Yadav
HTML
<span>Hello There</span><sup> x</sup>
JavaScript
$("sup").click(function(){
alert($(this).prev("span").text());
});
by Neeraj Yadav
<span>Hello There</span><sup> x</sup>
$("sup").click(function(){
alert($(this).prev("span").text());
});