Bonsoir , je rencontre un petit problème dans la réalisation d'un formulaire dynamique.

A vrai dire , c'est un peu une copie d'un code trouvé sur un autre site.
En fait, j'ai mis 2 champs d'erreur pour le pseudo (un si le pseudo est trop court ou trop long , et un si le pseudo est déja présent dans la BDD = AJAX).
Or si vous testez mon formulaire ici : vous pouvez constater que le champ pseudo a un comportement bizarre en cas d'erreur .

Voici le code html:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<form id="myForm" method="post" action="membres_inscription.php" >
 
      <span class="form_col">Sexe :</span>
      <label><input name="sex" type="radio" value="H" />Homme</label>
      <label><input name="sex" type="radio" value="F"  />Femme</label>
      <span class="tooltip" id="sex1">Vous devez sélectionnez votre sexe</span>
      <br /><br />
 
      <label class="form_col" for="lastName">Nom :</label>
      <input name="lastName" id="lastName" type="text"  />
      <span class="tooltip" id="lastName1">Un nom ne peut pas faire moins de 2 caractères</span>
      <br /><br />
 
      <label class="form_col" for="firstName">Prénom :</label>
      <input name="firstName" id="firstName" type="text" />
      <span class="tooltip" id="firstName1">Un prénom doit faire au moin 2 caractères</span>
      <br /><br />
 
      <label class="form_col" for="age"ge :</label>
      <input name="age" id="age" type="number"  />
      <span class="tooltip" id="age1">L'âge doit être compris entre 5 et 140</span>
      <br /><br />
 
      <label class="form_col" for="login">Pseudo :</label>
      <input name="login" id="login" type="text"  />
      <span class="tooltip" id="login1">Le pseudo doit faire au moins 4 caractères</span>
      <span class="tooltip" id="login2">Ce pseudo est déja pris</span>
      <br /><br />
 
      <label class="form_col" for="email">Email :</label>
      <input name="email" id="email" type="text"  />
      <span class="tooltip" id="email1">Veuillez renseignez une email valide</span>
      <br /><br />
 
      <label class="form_col" for="pwd1">Mot de passe :</label>
      <input name="pwd1" id="pwd1" type="password"  />
      <span class="tooltip" id="pwd3">Le mot de passe doit faire au moins 6 caractères</span>
 
      <br /><br />
 
      <label class="form_col" for="pwd2">Mot de passe (confirmation) :</label>
      <input name="pwd2" id="pwd2" type="password"  />
      <span class="tooltip" id="pwd4">Les deux mots de passes doivent etre identiques</span>
      <br /><br />
 
      <label class="form_col" for"verman">Donnez le nom de votre mère ( a retenir en cas de perte du code):</label>
      <input name="verman" id="verman" type="text"  />
      <span class="tooltip" id="verman1"> Veuillez remplir ce champ</span>
 
      <br/><br/>
 
      <?php require('captcha.php'); ?><label class="form_col" for="captcha">Recopiez le mot : "<?php echo captcha(); ?>"</label>
      <input type="text" name="captcha" id="captcha"  />
      <span class="tooltip" id="captcha1">Veuillez recopier correctement le captcha</span>
 
<br/><br/>
      <label class="form_col" for="country">Pays :</label>
 
      <select name="country" id="country">
        <option value="none">Sélectionnez votre pays de résidence</option>
        <option value="en">Angleterre</option>
        <option value="us">États-Unis</option>
        <option value="fr">France</option>
      </select>
      <span class="tooltip" id="country1">Sélectionner votre pays de résidence</span>
 
      <br /><br />
 
      <span class="form_col" ></span>
      <label><input name="news" type="checkbox" /> Je désire recevoir la newsletter chaque mois.</label>
      <br /><br />
 
<strong> En vous inscrivant vous acceptez les CGU disponible <a href="../cgu.php" >ici</a></strong><br/>
 
      <span class="form_col" ></span>
      <input type="submit" value="M'inscrire" /> <input type="reset" value="Réinitialiser le formulaire" />
 
    </form>

Et voici le code javascript:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<script type="text/javascript">
// Fonction de désactivation de l'affichage des "tooltips"
 
function deactivateTooltips() {
 
    var spans = document.getElementsByTagName('span'),
    spansLength = spans.length;
 
    for (var i = 0 ; i < spansLength ; i++) {
        if (spans[i].className == 'tooltip') {
            spans[i].style.display = 'none';
        }
    }
 
}
 
 
// La fonction ci-dessous permet de récupérer la "tooltip" qui correspond à notre input
 
function getTooltip(element) {
 
    while (element = element.nextSibling) {
        if (element.className === 'tooltip') {
            return element;
        }
    }
 
    return false;
 
}
 
 
// Fonctions de vérification du formulaire, elles renvoient "true" si tout est ok
 
var check = {}; // On met toutes nos fonctions dans un objet littéral
 
check['sex'] = function() {
 
    var sex = document.getElementsByName('sex'),
        tooltipStyle = getTooltip(sex[1].parentNode).style;
 
    if (sex[0].checked || sex[1].checked) {
        tooltipStyle.display = 'none';
        return true;
    } else {
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['lastName'] = function(id) {
 
    var name = document.getElementById(id),
        tooltipStyle = getTooltip(name).style;
 
    if (name.value.length >= 2) {
        name.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        name.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['firstName'] = check['lastName']; // La fonction pour le prénom est la même que celle du nom
 
check['age'] = function() {
 
    var age = document.getElementById('age'),
        tooltipStyle = getTooltip(age).style,
        ageValue = parseInt(age.value);
 
    if (!isNaN(ageValue) && ageValue >= 5 && ageValue <= 140) {
        age.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        age.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['login'] = function() {
 
    var login = document.getElementById('login'),
        tooltipStyle = getTooltip(login).style;
 
    if (login.value.length >= 4) {
        login.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        login.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['login2'] = function() {
 
  var login = document.getElementById('login'),
      tooltipStyle = getTooltip(login).style;
 
  var xhr = new XMLHttpRequest();
  xhr.open('GET', 'http://www.poliboolold.fr/membres/ajax_pseudo.php?pseudo='+login.value);
  xhr.send(null);
 
  xhr.onreadystatechange = function() {
 
 
    if(xhr.readyState == 4) {
 
    if (xhr.responseText.length != 7) {
    login.className = 'correct';
    tooltipStyle.display = 'none';
    return true;
  } else {
    login.className = 'incorrect';
    tooltipStyle.display = 'inline-block';
    return false;
  }
}
};
 
};
check['email'] = function() {
 
  var email = document.getElementById('email'),
      tooltipStyle = getTooltip(email).style;
 
  var email2 = document.getElementById('email').value;
 
  if (email2.match(/^([a-z0-9._-]+)@([a-z0-9._-]+)\.([a-z]{2,6})$/)) {
    tooltipStyle.display = 'none';
    return true;
  } else {
    tooltipStyle.display = 'inline-block';
    return false;
  }
 
};
 
check['pwd1'] = function() {
 
    var pwd1 = document.getElementById('pwd1'),
        tooltipStyle = getTooltip(pwd1).style;
 
    if (pwd1.value.length >= 6) {
        pwd1.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        pwd1.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['pwd2'] = function() {
 
    var pwd1 = document.getElementById('pwd1'),
        pwd2 = document.getElementById('pwd2'),
        tooltipStyle = getTooltip(pwd2).style;
 
    if (pwd1.value == pwd2.value && pwd2.value != '') {
        pwd2.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        pwd2.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['verman'] = function() {
 
    var verman1 = document.getElementById('verman'),
        tooltipStyle = getTooltip(verman1).style;
 
    if (verman1.value.length >= 2) {
        verman1.className = 'correct';
        tooltipStyle.display = 'none';
        return true;
    } else {
        verman1.className = 'incorrect';
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
check['country'] = function() {
 
    var country = document.getElementById('country'),
        tooltipStyle = getTooltip(country).style;
 
    if (country.options[country.selectedIndex].value != 'none') {
        tooltipStyle.display = 'none';
        return true;
    } else {
        tooltipStyle.display = 'inline-block';
        return false;
    }
 
};
 
 
// Mise en place des événements
 
(function() { // Utilisation d'une fonction anonyme pour éviter les variables globales.
 
    var myForm = document.getElementById('myForm'),
        inputs = document.getElementsByTagName('input'),
        inputsLength = inputs.length;
 
    for (var i = 0 ; i < inputsLength ; i++) {
        if (inputs[i].type == 'text' || inputs[i].type == 'password') {
 
            inputs[i].onkeyup = function() {
                check[this.id](this.id); // "this" représente l'input actuellement modifié
            };
 
        }
    }
 
    myForm.onsubmit = function() {
 
        var result = true;
 
        for (var i in check) {
            result = check[i](i) && result;
        }
 
        if (result) {
            alert('Le formulaire est bien rempli.');
            myForm.submit();
        }
 
        return false;
 
    };
 
    myForm.onreset = function() {
 
        for (var i = 0 ; i < inputsLength ; i++) {
            if (inputs[i].type == 'text' || inputs[i].type == 'password') {
                inputs[i].className = '';
            }
        }
 
        deactivateTooltips();
 
    };
 
})();
 
 
// Maintenant que tout est initialisé, on peut désactiver les "tooltips"
 
deactivateTooltips();
 
</script>
Donc ma question : Comment remedier a ce comportement bizarre de ce champ?
Voila , voilou.
S'il manque du code , ou si je ne suis pas très clair : faite-le moi remarquer

Merci d'avance pour votre aide.