1 2 3 4 5 6 7 8 9 10 11 12
<!DOCTYPE HTML><html> <body> <textarea id="t" rows="4" style="-moz-appearance: none"> </textarea> <script> var t = document.getElementById("t"); t.selectionStart = t.selectionEnd = t.value.length; t.focus(); </script> </body> </html>