JSFiddle - React, Tailwind, and code Playground
by Malitta Nan
HTML
<input type="text" />
JavaScript
$('input').on('click', function() {
//$(this).attr('clicked', 'clicked');
}).on('focus', function() {
$(this).attr('clicked', 'tabbed');
});