Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: Return Key/Enter Key Event Handler part II


Message #1 by "kriz buenaventura" <vickriz@i...> on Tue, 29 Oct 2002 12:40:51
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...

  Return to Index