Good morning, guys ...
I have a text field with recursive entries in my form. How do I after posting a typed value, clean it and leave it ready for the next entry? As soon as I type the first character of the next entry it displays the previously entered value ... my code looks like this:
if(valor == 0){
alert("Digitou zero.");
document.frmsaidadoscor.txtnumdo.focus();
}else{
dos.push(valor);
txtnumdo.value='';
cont = cont + 1;
document.frmsaidadoscor.txtnumdo.focus("");
}