keypress - Lov Popup item
ryuNov 10 2009 — edited Nov 10 2009Hi friends
I have one lov popup in my page.
This can only accept on keypress NUMBERS.
I put in html form attributtes
onkeypress="javascript:somentenumeros();"
in my include I put this:
function somentenumeros(){
if (document.all) // Internet Explorer
var tecla = event.keyCode;
else if(document.layers) // Nestcape /Firefox
var tecla = e.which;
if ((tecla > 47 && tecla < 58)) // numeros de 0 a 9
return true;
else {
if (tecla != 8) // backspace
//event.keyCode = 0;
return false;
else
return true;
}
}
But it´s not working......
Still is accepting letters.. why?
thanks