function detectEvent(e) { opc = false; var evt = e || window.event; tecla = evt.keyCode; if (tecla > 47 && tecla < 58) { opc = true;} /* los numeros del 0 al 9 para el IE */ if (evt.charCode > 47 && evt.charCode < 58) {opc = true;} /* los numeros del 0 al 9 para FF */ if (tecla == 35 && !document.all) {opc = true;} /* la tecla END para FF */ if (tecla == 46 && !document.all) {opc = true;} /* la tecla DELETE para FF */ if (tecla > 36 && tecla < 41 && !document.all) {opc = true; } /* las flechas para el FF */ if (tecla == 8 || tecla==9 || tecla==13){opc = true;} /* Backspace, TAB y Enter */ if(opc==false) { alert('Solo se aceptan nĂºmeros.'); } return opc; }