JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" />
<input type="text" id="detect" />
JavaScript
$('#detect').on('focus', function(e){
console.log(e);
});
<input type="text" />
<input type="text" id="detect" />
$('#detect').on('focus', function(e){
console.log(e);
});