0
Good morning, you guys...
I have in my form a text field with recursive entries. How do I p/after sending a typed value, clear it and get ready for the next entry ? As soon as I type the first character of the next entry it presents the value already typed previously...my code is 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("");
}
Thank you, colleague.... It worked...
– Ninja2112
@Ninja2112, if the solution presented solved your problem you must accept it as an answer. And it is important to ask a question always worry about presenting a [MCVE]
– Leandro Angelo