T
Thierry Lam
I currently have the following html:
<label for="Name">Name:</label>
<input type="text" value="" name="name" id="name" />
<a href="name">*</a>
<br />
<label for="Email">Email:</label>
<input type="text" value="" name="email" id="email" />
<a href="email">*</a>
I want to be able to tab from the name to email field with one key
tab. Right now, it's going through the first hyperlink before moving
to the email section. Are there some attributes that I can set to tab
straight to email from name? I can't remove the hyperlink since there
are js functionalities associated with it.
<label for="Name">Name:</label>
<input type="text" value="" name="name" id="name" />
<a href="name">*</a>
<br />
<label for="Email">Email:</label>
<input type="text" value="" name="email" id="email" />
<a href="email">*</a>
I want to be able to tab from the name to email field with one key
tab. Right now, it's going through the first hyperlink before moving
to the email section. Are there some attributes that I can set to tab
straight to email from name? I can't remove the hyperlink since there
are js functionalities associated with it.