Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tab control 1

Status
Not open for further replies.

mysql2002

Programmer
Mar 7, 2002
3
US
Newbie's question: I'd like to set the first typing position (flashing | cursor) at the first INPUT box. Below is my code, how do I set the flashing | at the First INPUT without tabbing?
TIA
Please enter the new employee information:<br>
<FORM action=&quot;<?PHP echo $PHP_SELF ?>&quot; method=&quot;post&quot;>
First Name: <INPUT tabindex=&quot;1&quot; type=&quot;text&quot; name=&quot;FirstName&quot;
maxlength=&quot;25&quot;><br>
Last Name: <INPUT tabindex=&quot;2&quot; type=&quot;text&quot; name=&quot;LastName&quot;
maxlength=&quot;25&quot;><br>
Address: <INPUT tabindex=&quot;3&quot; type=&quot;text&quot; name=&quot;Address&quot;
maxlength=&quot;255&quot;><br>
Position: <INPUT tabindex=&quot;4&quot; type=&quot;text&quot; name=&quot;Position&quot;
maxlength=&quot;50&quot;><br>
Male: <INPUT name=&quot;Sex&quot; type=&quot;radio&quot; value=&quot;M&quot;>
Female: <INPUT name=&quot;Sex&quot; type=&quot;radio&quot; value=&quot;F&quot;>
<br>
<br>
<INPUT type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Submit&quot;>
</FORM>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top