JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" name="fuckthis" id="thing" />
JavaScript
$('body').on('focus', ':input', function(e) {
alert("fuck this");
})
<input type="text" name="fuckthis" id="thing" />
$('body').on('focus', ':input', function(e) {
alert("fuck this");
})