So, currently I have a text-input-field with a value that is also autofocused.
On page load, the value is selected / highlighted. Is there a way I can put the cursor at
You can add this parameter to your text input field:
onmouseover="this.setSelectionRange(this.value.length,this.value.length);" onfocus="this.setSelectionRange(this.value.length,this.value.length);"
NB: Works well under Chromium in 2017.