PDA

View Full Version : focus element


nikko50
09-23-2004, 04:22 PM
Hello all. I know how to place focus on a field but was wondering if there was a way to place focus on the first field on every form no matter what it is named. I was thinking maybe by creating a class or id for the first field. Just wondering if you guys have any tricks for this.
Tracy

Basscyst
09-23-2004, 04:53 PM
Not sure what you mean but . . .


document.forms[0].elements[0].focus();


Will focus on the first element in the first form on a page.

Is that what you are looking for?

Basscyst

nikko50
09-23-2004, 04:58 PM
That's exactly what I need. Thanks
Tracy