JSFiddle - React, Tailwind, and code Playground

by uday99

HTML

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

JavaScript

function selectAllText(textbox) {
    textbox.focus();
    textbox.select();
}