JSFiddle - React, Tailwind, and code Playground

by Town

HTML

<script src="https://raw.github.com/brandonaaron/livequery/master/jquery.livequery.js"></script>
<button>Click</button>

JavaScript

$('button').click(function() {
    $(this).after("<div class='myDiv'>New Div</div>");
});

$('div.myDiv').livequery(function() {
    $(this).mouseenter(function() {
        alert("!");
    }).mouseenter();
});