JSFiddle - React, Tailwind, and code Playground
HTML
<div id="clicky">CLICKME</div>
CSS
#clicky {
height:100px; width:100px;
}
JavaScript
jQuery(function($) {
var touched = false;
$('#clicky').on('touchstart', function(evt){
touched = true;
evt.preventDefault();
})
.click(function(){
if (!touched) {
alert("somehow touch didn't fire")
}
});
})