how to place cursor at the start of input type text js code example
Example 1: move cursor to end of line javascript
<input type="text" id="yourId" onfocus=" let value = this.value; this.value = null; this.value=value" name="nameYouWant" class="yourClass" value="yourValue" placeholder="yourPlaceholder...">
<script>
document.getElementById("yourId").focus()
</script>
Example 2: js vanilla set cursor to edit text on click
element.focus()