JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">Jitender</a>
JavaScript
$('a').click(function(){
alert(0);
})
$('a').mouseover(function() {
alert("Moused!");
});
<a href="#">Jitender</a>
$('a').click(function(){
alert(0);
})
$('a').mouseover(function() {
alert("Moused!");
});