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();
});
by brunomsilva
<input type="text" id="test" />
$('#test').focus(function() {
this.select();
});
$('#test').mouseup(function(e) {
e.preventDefault();
});