JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" />
<input type="text" id="detect" />

JavaScript

$('#detect').on('focus', function(e){
   console.log(e); 
});