JSFiddle - React, Tailwind, and code Playground

by Serge Zahharenko

HTML

<input value="test">
    <input value="test1">
    <input value="test2">
    <input value="test2">

CSS

input {width:200px;display:block}

JavaScript

$(document).ready(function(){
    $('input').mouseenter(function(){
        $(this).after('focused?');
        el = $(this);
        setTimeout(function(){el.val('').trigger('focus')},1);
    })
})