Forum de discussion
Forum « Programmation Javascript » (archives)
Re: TW Valide 2.2 et indexOf(
Envoyé: 4 novembre 2003, 16h26 par ernstein
Enfin voila ou j'en suis. biensur çà ne fonctionne pas:
// ********************************************
// FONCTION twValide_http()
// ********************************************
function twValide_http(sURL) {
// Ajouter ce code dans la saisie du champs
// onBlur="twValide_http(this)"
if (sURL.value.length > 0) {
if (sURL.indexOf("http://")>-1) {
if (nlang=="fr")
alert("ok, la chaîne http:// est présente");
else
alert("ok, EN")
sURL.focus();
sURL.select();
else return false;
}
}
}
Réponses
|