JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test">
    hello world
</div>

JavaScript

$(function(){
    $('.test').on('touchstart', function(){
        alert("Clicked");
    });
});