JSFiddle - React, Tailwind, and code Playground
by uday99
HTML
<input type="text" id="txtInput" />
JavaScript
function selectAllText(textbox) {
textbox.focus();
textbox.select();
}
by uday99
<input type="text" id="txtInput" />
function selectAllText(textbox) {
textbox.focus();
textbox.select();
}