Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/10/2005, 08:10
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 9 meses
Puntos: 5
SI, la respuesta es SI.

Código HTML:
<script>
function esInteger(e) {
 var charCode
 charCode = e.keyCode 
 status = charCode 
 if (charCode > 31 && (charCode < 48 || charCode > 57)) {
  return false
 }
 return true
}
</script> 
Código HTML:
<input name="loquesea" onkeypress="return esInteger(event)"> 
saludos
__________________
Saruman

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