hello there- I got a working form and my current validation (coded not mootools) about empty fields works like a charm but when i try to validate a number oor alphanumeric character, somehow CF just assumes everything is right and submits the form. Here part of the code:
Can we use this type of code in CF???? or only this types works?:
Thanks in advance
function check(form)
{
if(isNaN(form.postcode.value))
{
alert("Error');
return false;
}
return true;
}
Can we use this type of code in CF???? or only this types works?:
if(form.lastName.value == "") {
alert etc etc
Thanks in advance