JSFiddle - React, Tailwind, and code Playground

by tabalinas

HTML

<div>

</div>

CSS

div {
    background: red;  
    width: 100px;
    height: 100px;
}

JavaScript

$("div").on("touchstart touchend touchmove", "span", function(e) {
    alert("Event " + e.type);
})

setTimeout(function() {
    $("div").append("<span>fkjsd;lkf;dskljf;sdjf</span>")
}, 1000)