JSFiddle - React, Tailwind, and code Playground
by seanmcmills
HTML
<input type='text' value='hello world' id='hello-world-input'>
JavaScript
$(function() {
$('#hello-world-input').focus().select();
});
by seanmcmills
<input type='text' value='hello world' id='hello-world-input'>
$(function() {
$('#hello-world-input').focus().select();
});