0
Why it keeps giving Infinite Time when I try Focus() in an incorrectly filled onblur field?
if(ret = TstForDat(wCampo, "")!=""){
alert('Data Incorreta! Favor preencher a data corretamente.');
wCampo.focus(); //apos colocar isto, o alert em cima fica aparecendo sem parar.
}
Probably because the event Blur is fired when setting new focus.
– Woss
I managed to resolve... I set the correct date before setting Focus(). Thanks Anderson!
– Reculos Gerbi Neto