JSFiddle - React, Tailwind, and code Playground

by Ztyx

HTML

<textarea>This is my text.</textarea>

JavaScript

$('textarea').focus(function(e) {
    e.target.select();
    $(e.target).one('mouseup', function(e) {
        e.preventDefault();
    });
});