When a user hits <ENTER>
after filling in the first text input field of a multi-part HTML form, how can one make it tab to the next input field rather than immediately executing the php script?
<FORM METHOD=POST ACTION="commentw.php">
Name: <input type="text" name="name" size="60" maxlength="40">
<textarea name="comment" wrap="physical" rows="10" cols="80"></textarea>
<INPUT TYPE=SUBMIT VALUE ="Submit">
</FORM>
I have looked everywhere for a hint with no success.
Thanks in advance!