JSFiddle - React, Tailwind, and code Playground

by Trufa

HTML

<input class="select-on-hover" value="http://weeklyjquery.com"/><br/>
<input class="select-on-hover" value="http://weeklyjquery.com"/><br/>
<input class="select-on-hover" value="http://weeklyjquery.com"/><br/>
<input class="select-on-hover" value="http://weeklyjquery.com"/>

JavaScript

$(".select-on-hover").mouseenter(function() {
    $(this).select();
}).mouseleave(function() {
    $(this).blur();
});