-
Label Tags
Hi all,
I am using label tags to put the focus in a textbox while pressing on the text between the label tag
Like this:
<code>
<LABEL for="name">Name:</LABEL>
<INPUT TYPE="text" id="name">
</code>
So in IE when i press on Name:, it put the focus in the textBox.
It just doesn't take effect in Netscape
Does anybody knows if we have to do something different in order to do that with Netscape
Thanks
-
Does it work when you do this?
Code:
<LABEL for="name" onclick="document.getElementById('name').focus()>Name:</LABEL>
<INPUT TYPE="text" id="name">
-
Sorry just read you post
Thanks i'll try this......I'me using Netscape 4.6
-
Nope it doesn't work
It must be because my version is 4.6 and the label tags are not supported.
If you have an idea please let me know
Thanks for your help