Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/01/2009, 08:23
[email protected]
 
Fecha de Ingreso: octubre-2005
Mensajes: 405
Antigüedad: 18 años, 5 meses
Puntos: 1
ayuda con onfocus en formulario.

Hola a todos, necesito su ayuda en el siguiente formulario.
* Que cuando carge, aparezca con el foco en input text usuarios.
* Que al ingresar datos de usuario, mediante un enter o un tab el foco pase al input text password.
Espero darme a entender, desde ya se agradece su colaboración.


Código PHP:
<form id="form1" name="form1" method="post" action="xx.php">
  <
table width=50border=1 cellspacing=0 cellpadding=2 align=center>
  <
tr>
    <
td width=30align=right>Usuario&nbsp;</td>
    <
td width=70%>
      <
input name="usuario" type="text" id="usuario" size=30 maxlength=30 />
    </
td>
  </
tr>
  <
tr>
    <
td width=30align=right>Password&nbsp;</td>
    <
td width=70%>
      <
input name="password" type="text" id="password" size=30 maxlength=30 />
    </
td>
  </
tr>
  <
tr>
    <
td colspan=2 align=center>
      <
input name="envia" type="submit" value="Enviar" />
    </
td>
    </
tr>
</
table>

</
form