This is probably a real bonehead question, but I can't find the answer in any of my HTML books. All I want to do is to be able to insert the cursor's focus in a specified text box of my choice.
For example, I have a simple page with one text field and one submit button:
<INPUT TYPE="text" NAME="Test">
<BR>
<INPUT TYPE="submit" NAME="Submit">
So, when the user goes into this page, I want the cursor to be in the "Test" text box (currently, the user must first click in the text box for the cursor to appear).
I am assuming that I am just missing one GIANT step. Thanks!
For example, I have a simple page with one text field and one submit button:
<INPUT TYPE="text" NAME="Test">
<BR>
<INPUT TYPE="submit" NAME="Submit">
So, when the user goes into this page, I want the cursor to be in the "Test" text box (currently, the user must first click in the text box for the cursor to appear).
I am assuming that I am just missing one GIANT step. Thanks!