JSFiddle - React, Tailwind, and code Playground

HTML

<div id="o">Tag:</div>

<input class="a" />
<select class="a"></select>

JavaScript

$('.a').focus(function() {
    var tag = $(this).prop("tagName");
    $('#o').html("Tag: " + tag);
});