I have a textarea and I want its text to have the focus and selected-all when the page is loaded. This is my code, but it is not working. Any ideas?
<body onload="document.formIn.originalScript.select();document.formIn.originalScript.focus();">
<form action="servlet" method="POST" name="formIn">
<textarea name="originalScript" cols="52" rows="30">This is my text</textarea>
Thanks
FIXED: See my answer below. Works on the server.