JSFiddle - React, Tailwind, and code Playground
HTML
<input value="123" type="text" id="wtf">
<input value="123" type="text" id="wtf1">
<input value="123" type="text" id="wtf2">
JavaScript
$("#wtf").focus(function () {
console.log('focus ', this);
var field_len = this.value.length;
//this.setSelectionRange(field_len, field_len);
this.setSelectionRange(0, field_len);
});