|
-
Jul 20th, 2005, 02:18 PM
#1
Thread Starter
Member
Text Focus
Hello,
I have a text box which i use as a search box. When i submit the page, how can i make the form set the focus on this box but at the end of the text, ive allready got it so it sets the focus on this box but cant figure out how to get it on the end of the text.
Thanks.
-
Jul 21st, 2005, 04:19 AM
#2
Re: Text Focus
try this
Code:
//place cursor at end of text
txt.focus();
txt.value = "test";
//place cursor at start of text
txt.value = "test";
txt.focus();
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|