JSFiddle - React, Tailwind, and code Playground

by nosfan1019

HTML

<p></p>

CSS

p {
    width: 200px;
    height: 50px;
    padding: 5px 10px;
    font-size: 30px;
}

JavaScript

var here = "Here I am :)"

$("p").mouseover(function(){
  $(this).text(here);
});
$("p").mouseout(function(){
  $(this).empty();
});