JSFiddle - React, Tailwind, and code Playground
by Town
HTML
<input type="text" value="test" />
JavaScript
$('input').select(function(e) { e.preventDefault(); return; });
$('input').focus();
by Town
<input type="text" value="test" />
$('input').select(function(e) { e.preventDefault(); return; });
$('input').focus();