JSFiddle - React, Tailwind, and code Playground

by toshimaru

HTML

<div id="target"></div>

CSS

.area {
    width:50px;
    height:50px;
    background-color: #aaa;
}

JavaScript

$('#target').on({
  'mouseenter': function(){ alert('mouse entered!') },
  'mouseleave': function(){ alert('mouse left!') }
}, '.area');

$('#target').html('<div class="area"></div>');