
10/05/2006, 14:02
|
 | | | Fecha de Ingreso: marzo-2004
Mensajes: 264
Antigüedad: 21 años Puntos: 0 | |
lo hice asi
<input name="ip1" type="text" maxlength="3" size="1" onkeyup="pasa(this,document.form1.ip2)">
<input type="text" name="ip2" maxlength="3" size="1">
y la funcion
function pasa (input,input2)
{
if (input.value.length==input.maxLength)
input2.focus();
}
pero no me funciona, me diuce que necesita no encuentra un objeto |