1<!DOCTYPE html> 2<html> 3<body> 4<input id='target' value="simple text"> 5<script> 6 var input = document.getElementById('target'); 7 input.focus(); 8 input.setSelectionRange(0, input.value.length); 9</script> 10</body> 11</html> 12
1<!DOCTYPE html> 2<html> 3<body> 4<input id='target' value="simple text"> 5<script> 6 var input = document.getElementById('target'); 7 input.focus(); 8 input.setSelectionRange(0, input.value.length); 9</script> 10</body> 11</html> 12