Thierry Lam wrote:
> I currently have the following html:
The URL would probably have revealed your real problem, and you would now
have a real solution to it...
> <label for="Name">Name:</label>
> <input type="text" value="" name="name" id="name" />
> <a href="name">*</a>
A very odd link. And a strange <input> element, as it has no size="..."
attribute, so the visible width will be set by browser defaults and will be
too small for most people's names.
> I want to be able to tab from the name to email field with one key
> tab.
Remove the odd link then.
> I can't remove the hyperlink since there
> are js functionalities associated with it.
Yes you can and should. But you cannot get help with doing that unless you
show the real problem, i.e. the situation that made you include the odd
link.
When scripting is disabled, the element <a href="name">*</a> will act as
what it is, as a link to resource "name" relative to the base URL of the
document (_not_ as a link to the element with id="name" in the current
document - href="#name" would refer to it).
--
Yucca,
http://www.cs.tut.fi/~jkorpela/