JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" title="Enter your Name Here."/>

CSS

body{
   padding: 20px;        
}

JavaScript

$("input").on('focus', function(){
    title = $(this).attr("title");
    topp = $(this).offset().top;
    leftt = $(this).offset().left;
    width = $(this).width();
    $("body").append('<div id="tooltip" style="position: absolute; top: '+topp+'px; left '+parseInt(width+leftt)+'px; width: 150px; height: 150px; background-color: #ccc; border: 2px inset green;">'+title+'</div>');
});