JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test">
hello world
</div>
JavaScript
$(function(){
$(document).on('touchstart', '.test', function(){
alert("Clicked");
});
});
<div class="test">
hello world
</div>
$(function(){
$(document).on('touchstart', '.test', function(){
alert("Clicked");
});
});