JSFiddle - React, Tailwind, and code Playground

HTML

<input id="textbox" value="foo">

JavaScript

var textbox = $("#textbox");

textbox.prop("selectionStart", textbox.val().length)
       .focus();