Ver originalfunction validar(campo){ var numeros = /\d/; if(!numeros.test(campo.value)){ campo.value = campo.value.substring(0, campo.value.length-1); }}
Ver original<input type='text' onkeyup='validar(this);' />