JSFiddle - React, Tailwind, and code Playground

by lasha

HTML

<p><input type="text" /> <span>focusin fire</span></p>
<p><input type="password" /> <span>focusin fire</span></p>

CSS

span {display:none;}

JavaScript

$("p").on('focusin', function(event) {
         $(this).find("span").html("hello").css('display','inline').fadeOut(1000);
});