JSFiddle - React, Tailwind, and code Playground

HTML

<input type='text' id='myid'>

JavaScript

jQuery(document).ready(function(){
    jQuery('#myid').live('focus', function(event) {        
        alert($("*:focus").attr("id"));
    });
});