JSFiddle - React, Tailwind, and code Playground

by neonms92

HTML

<input type="text" id="textbox" value="A">

JavaScript

$(document).ready(function() {
    $('#textbox').focus();
    $('#textbox').select();
});