Posts by Wellyngton • 141 points
2 posts
-
1
votes1
answer321
viewsQ: Jquery Validate does not execute the event when fields are autocompleted
I am trying to validate a form without submitting it. What I have done so far works well. The problem is when the browser auto-fill completes the login and password that were saved to the IP. If I…
-
3
votes8
answers17275
viewsA: Difference between while and for
A while is a more simplistic form for a loop of repetition, where in its structure one has only the condition. Example: while(condição){ //Bloco que será executado enquanto condição satisfaça (Ou…