JSFiddle - React, Tailwind, and code Playground

by stopsatgreen

HTML

<h1>The Doors!!!</h1>

JavaScript

var el = document.querySelector('h1')
el.addEventListener('touchstart', function(e) {
    console.log('OK!!!');
});
el.addEventListener('click', function(e) {
    console.log('D\'OK!!!');
});