Jump to content

[SOLVED] I have a form question


jim.davidson

Recommended Posts

If you want the first field in your form to be focused you need javascript:

 

http://javascript.internet.com/forms/field-focus.html

http://www.jguru.com/faq/view.jsp?EID=289856

(just some google hits)

 

Alternatively, which I prefer, you can specify the tabindex attribute for your fields. This will allow the user to easily jump through them with their tab-key.

 

<input type="text" name="firstname" tabindex="1">

<input type="text" name="lastname" tabindex="2">

 

First tab will focus the firstname field and second tab will focus lastname field. Very nice :)

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.