Je cherche une solution pour rendre tous mes champs de formulaire obligatoire.
J'ai bien cette fonction :
Code : Tout sélectionner
function champsok()
{
if (document.form.nom.value.length == 0)
{
alert("Votre Nom, Merci");
return false;
}
return true;
}
bonne journée