JSFiddle - React, Tailwind, and code Playground

by SchmalzyB

HTML

<div class="secondcircle" id="circleone">
    <p>
      TEST
    </p>
</div>

CSS

#circleone
{
    border: 1px solid #000;
}

JavaScript

$("#circleone").hover(
  function () {
    $(this).html("<p>Enter</p>");
  },
  function () {
    $(this).html("<p>Leave</p>");
  }
);