JSFiddle - React, Tailwind, and code Playground

by alokdhari

HTML

<input type="datetime" text="hover or click on me" class="myInput"/>

<input type="submit" class="myButton" text="i am visible because you typed some text" style="display: none" />

JavaScript

$('.myInput').hover(function(){
    $('.myButton').show();
});