JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#">Jitender</a>

JavaScript

$('a').click(function(){
    alert(0);
}).bind('mouseover', function() {
    $(this).css('background-color', 'red');
});