Hi, when i validate a textbox the numbers desapears.
And another thing, how can i give the focus to the next textbox (nombres)? :rolleyes:
<script type="text/javascript">
function validar(e) {
tecla = (document.all)?e.keyCode:e.which;
if (tecla==8 || tecla==0){
return true;
}
patron = /([0-9\.])/;
te = String.fromCharCode(tecla);
}
</script>