Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/07/2005, 12:07
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 8 meses
Puntos: 5
vecicono, pruebe esta función:
Código:
 function esInteger(e) {
var charCode 
charCode = e.keyCode 
status = charCode 
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false
}
return true
}
utilización:

Código HTML:
<input name="noc" onkeypress="return esInteger(event)"> 
suerte!
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.