JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test"> </div>

CSS

.test{
    width: 50px;
    height: 50px;
    background-color: blue
}

JavaScript

$(".test").on("click",function(){
    $(this).on("mouseover",function(){
     alert();   
    })   
})