Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

try paste this in the end of body tag:

<script type="text/javascript" language="javascript">

            onLoad();

            function onLoad() {
                 document.getElementsByName('originalScript')[0].select();

            }

        </script>
share|improve this answer
up vote 0 down vote accepted

Once I upload the code on the original question to the server, it works. It is only locally where I get these issues.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.