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