can anybody help me with my project encoding on the fly with forms..
this is my example code..
<body onload="document.myform.surname.focus()">
<form name="myform" method="POST" action="blformvalidate.htm"
onsubmit="return validateForm(this)">
<p>User Name: <input type="text" name="username" size="32"><br>
Email Address: <input type="text" name="email" size="32"><br>
Birth Date: <input type="text" name="birthdate" size="16"><i>(mm/dd/yyyy)
</i></p>
<p><input type="submit"
value="Register" name="submit"></p>
</form>
now my prob is i want to have a function for key event using the returnkey
or enterkey. that once i press the enter key it would focus my cursor the
the next input text.
please help...