JSFiddle - React, Tailwind, and code Playground
by _sir
HTML
<button>
Hey
</button>
<a href="#foo">This link</a>
<div class="foo">
</div>
CSS
a:hover { color: red; }
button { padding: 1em; }
a { margin: 2em; }
JavaScript
var $foo = $('.foo');
$('button, a').on('click touchstart touchend touchmove mousedown mouseup mouseenter mouseleave', function(evt){
$foo.append(this.tagName + ': ' + evt.type +'<br/>');
});