Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: SV: Return Key/Enter Key Event Handler


Message #1 by "Robert Nyman" <robert.nyman@c...> on Tue, 29 Oct 2002 10:05:44 +0100
this is the example code of my form..
<body onload="show_time(), document.myform.surname.focus()">
<form name="myform">
 <font size="2">SurName</font><br>
  <input name="surname" type="text" onKeyPress="EnterHandler(event)">
 <font size="2">FirstName</font><br>
  <input name="firstname" type="text">

now i want to have some function but my prob. is i dont know how to built 
my function using that onKeyPress or onKeyDown inside the body and also 
how can i used the sample code u tellin me??

  <element onKeyDown=3D"if(event.keyCode =3D=3D 13) moveFocus()">

bytheway im just using IE5.5

thanks again robert your really big help.. more power...

  Return to Index