JSFiddle - React, Tailwind, and code Playground
by cchana
HTML
<div class="milestone-in-tree">
hover over me
</div>
JavaScript
$(".milestone-in-tree").live({
mouseenter: function() {
setTimeout(function() {
alert(1)
},5000)
},
mouseleave: function() {
$(".grid-btn").delay(800).remove();
}
});