Jump to content

Auto Focus

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
Ronin

Ronin

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 309 posts
When the user loads the "Submit" page I want to auto-focus on a certain form input. How do I do this?

#2
xtraze

xtraze

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 910 posts
I have seen this feature on Gmail.com page,
you can just snoop on it and get the magic code. that is what I do most of the times.

Good luck my friend.

#3
Guest_NeedHelp_*

Guest_NeedHelp_*
  • Guests
Easy, just do:

document.yourForm.objectName.focus();


#4
Ronin

Ronin

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 309 posts
Nice, thanks! I wrote a function to do this in JavaScript, perfect.