Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/02/2011, 11:56
loquilloboss
 
Fecha de Ingreso: octubre-2010
Mensajes: 15
Antigüedad: 14 años, 1 mes
Puntos: 0
Pregunta Function Solo Numeros

Estimados,

Como puedo lograr que esta funcion acepte "CONTROL+V" para pegar numeros.


function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;

return true;
}