Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/11/2004, 09:18
rachelsan
 
Fecha de Ingreso: octubre-2004
Mensajes: 55
Antigüedad: 19 años, 6 meses
Puntos: 0
Busqueda foco en formulario

¿Como se pone el foco en un formulario?. Por ejemplo, tengo una pagina q pide login y password y quiero q nada mas cargar la pagina pueda escribir en el cuadro de texto del login sin tener q hacer click antes en dicho cuadro.

<form action="acceso.jsp" method="post">
<table border="0">
<tr height="30%">
<td align="left" width="30%"><span class="etForm">Login</span>
<td width="70%"><input class="formulario" type="text" name="login" size="30">
</tr>
<tr height="30%">
<td align="left" width="30%"><span class="etForm">Password</span></td>
<td width="70%"><input class="formulario" type="password" name="passw" size="30"></td>
</tr>
<tr height="10%"><td>&nbsp;</td></tr>
<tr height="30%">
<td width="30%"><input class="letraboton" type="submit" value="Enviar"></td>
<td width="70%"><input class="letraboton" type="reset" value="Borrar"></td>
</tr>
</table>
</form>