JSFiddle - React, Tailwind, and code Playground

by shushanth pallegar

HTML

<p class="text">hello</p>

JavaScript

$('.text').on('mouseenter',function(){
         $(this).html('world');
         });
      $('.text').on('mouseleave',function(){

        $(this).html('hello');
    })