Hola!!!...tengo 3 campos de textos en los cuales el usuario introduce la fecha: dd / mm / aa, el dia es un campo de texto, el mes otro y el año otro mas...he visto en otras paginas que hay formularios parecidos en los cuales cuando tecleas un dato y terminas se pasa de inmediato al otro campo de texto...me explico?...espero que si...
...bueno pues lo que pretendo hacer y no sé si se pueda hacer con puro código html...se puede?...tengo el siguiente código que pensé que guncionaria pero no es así...de antemano agradezco la ayuda!!!
<form name="NombreForm" action="ReporteAlmacen_SistemPesado_1erTurno.asp" method="post">
<input name="dia1" type="text" size="2" maxlength="2" onKeyUp="KeyPress(this,event,2,'what.form.mes1.foc us()')" onFocus="this.value=''">
<strong>/</strong>
<input name="mes1" type="text" size="2" maxlength="2" onKeyUp="KeyPress(this,event,2,'what.form.year1.fo cus()')" onFocus="this.value=''">
<strong>/</strong>
<input name="year1" type="text" size="2" maxlength="2" onKeyUp="KeyPress(this,event,2,'what.form.year1.fo cus()')" onFocus="this.value=''">
<tr>
<td width="370" height="25" align="center" valign="bottom"><input type="submit" name="Submit" value="Consultar">
<input type="reset" name="Submit2" value=" Limpiar "></td>
</tr>
</form>