Results 1 to 2 of 2

Thread: Text Focus

  1. #1

    Thread Starter
    Member Ch1n's Avatar
    Join Date
    Apr 2005
    Location
    Pompey
    Posts
    42

    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.
    "He who dares, wins"

  2. #2
    Frenzied Member DeadEyes's Avatar
    Join Date
    Jul 2002
    Posts
    1,196

    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
  •  



Click Here to Expand Forum to Full Width