Hi
In this code the field must have at least 3 characters : (var minLength =
3;)
Code:
// check for Voornaam
if (document.Regis treren.Voornaam .value.length < minLength) {
alert('You have to fill in at least 3 characters');
return false;
}
I want to chance the code, so that they have to fill in something, it may
not stay empty.
Regards,
Yammaski.
In this code the field must have at least 3 characters : (var minLength =
3;)
Code:
// check for Voornaam
if (document.Regis treren.Voornaam .value.length < minLength) {
alert('You have to fill in at least 3 characters');
return false;
}
I want to chance the code, so that they have to fill in something, it may
not stay empty.
Regards,
Yammaski.
Comment