Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/03/2008, 16:00
Avatar de Mosiah
Mosiah
 
Fecha de Ingreso: mayo-2002
Ubicación: Vitoria - Madrid
Mensajes: 229
Antigüedad: 22 años
Puntos: 0
Re: Problemilla OnKeypress

Hola,

con:

Código:
numero=document.createElement('input');
numero.type='text';
numero.name='numero_'+n;
numero.size='4';
numero.onkeypress = function () {return numeros(event)};
te funciona?

Salu2