JSFiddle - React, Tailwind, and code Playground

by brunomsilva

HTML

<input type="text" id="test" />

JavaScript

$('#test').focus(function() {
    this.select();
});
$('#test').mouseup(function(e) {
    e.preventDefault();
});