mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
13 lines
211 B
HTML
13 lines
211 B
HTML
<!DOCTYPE HTML><html>
|
|
<body>
|
|
<textarea id="t" rows="4">
|
|
|
|
</textarea>
|
|
<script>
|
|
var t = document.getElementById("t");
|
|
t.selectionStart = t.selectionEnd = t.value.length;
|
|
t.focus();
|
|
</script>
|
|
</body>
|
|
</html>
|