10 lines
254 B
HTML
10 lines
254 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<input type=text value="الخير" autofocus>
|
|
<script>
|
|
onload = () => {
|
|
let input = document.querySelector("input");
|
|
input.selectionStart = input.selectionEnd = input.value.length;
|
|
input.focus();
|
|
}
|
|
</script>
|