vote up 0 vote down star

Hi.

I have had several threads about validating my textarea; for some reason it won't validate. The function that validates doesn't seem to be called at all.

Here is the form simplified:

<form name="annonsera" id="annonsera" method="post"
        enctype="multipart/form-data" onSubmit="return validateForm();">
<textarea name="annonsera_des" cols="45" rows="12" id="annonsera_des"></textarea>
</form>

And here is the Javascript that gets the form textarea's value:

var description = document.getElementById("annonsera_des");

And here is the javascript that calls the function to validate all fields etc...

function validateForm() {
    var name = document.getElementById("annonsera_name");
    var tel = document.getElementById("annonsera_tel");
    var email = document.getElementById("annonsera_email");
    var area = document.getElementById("annonsera_area");
    var community = document.getElementById("annonsera_area_community");
    var category = document.getElementById("annonsera_category");
    var subcats = document.getElementById("annonsera_subcats").getElementsByTagName("select");
    var headline = document.getElementById("annonsera_headline");
    var description = document.getElementById("annonsera_des");

    if (nameValid(name)){
        if (telValid(tel)){
            if (emailValid(email)){
                if (areaValid(area)){
                    if (communityValid(community)){
                        if (categoryValid(category)){
                            if (subcatsValid(subcats)){
                                if (headlineValid(headline)){
                                    if(descriptionValid(des)){
                                        return true;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    return false;
}

And here is the function descriptionValid():

function descriptionValid(fld){
    if (fld.value=="") {
        document.getElementById("annonsera_descriptionempty_error").style.display='block';
        document.getElementById("annonsera_description").focus();
        document.getElementById("annonsera_descriptionshort_error").style.display='none'; 
        return false;
    }
    else if (fld.value.length<3){
        document.getElementById("annonsera_descriptionshort_error").style.display='block';
        document.getElementById("annonsera_description").focus();
        document.getElementById("annonsera_descriptionempty_error").style.display='none'; 
        return false;
    }
    document.getElementById("annonsera_descriptionempty_error").style.display='none'; 
    document.getElementById("annonsera_descriptionshort_error").style.display='none'; 
    return true;
}

So, what is wrong with this code?

NOTE: I have added alert boxes inside the descriptionValid() function, and none of them get displayed, so basically the function doesn't get called for some reason. The form just submits. The strange part is that I am validating all other fields and drop lists using exactly the same method and it works fine.

flag

19  
for the love of all that is good and holy, please get rid of all those nested ifs and use the && operator. – Brian Schroth Nov 5 at 17:19
I will trim it later... just wrote the damn thing – camran Nov 5 at 17:20
7  
"I will trim it later." Famous last words of the developer. – Matt Huggins Nov 5 at 17:24
2  
yukkk! we need a 'evil-code' tag ASAP – axel_c Nov 5 at 17:27
2  
@camran: Being rude to people you're asking for help is a very bad idea - it really doesn't encourage people to want to help you. You should stop now. – Ken White Nov 5 at 17:28
show 4 more comments

9 Answers

vote up 6 vote down check

In the original function, you say:

var description = document.getElementById("annonsera_des");

But later, in the validation function, you use:

document.getElementById("annonsera_description")

Which one is it? des or description?

Update, with another idea: I'm not sure if you can do onClick="return validateForm();" - what happens if you do onClick="javascript:validateForm(); or just onClick="validateForm();"?

link|flag
1  
Good powers of observation! +1 – José Basilio Nov 5 at 17:28
He probably didn't check if the result from getElementById was a valid object, and assumed he could access properties from it, preventing the Javascript from continuing executing, and why he didn't see the alert boxes. – Matt Huggins Nov 5 at 17:30
The declaration and usage of the 'description' var is also inconsistent. He stores the description form element into a variable 'description' and then calls descriptionValid() with an undefined object 'des'. – Mike Haboustak Nov 5 at 17:36
@Mike Haboustak - That's what I point out in my answer. – JeffH Nov 5 at 17:44
@JeffH - so fix it! lol – Matt Huggins Nov 5 at 17:47
show 2 more comments
vote up 0 vote down

It looks like everything on the rest of the form would have to validate before your function would even be called. Is it possible that something else is validating incorrectly, and therefore dropping out of your IF's, prior to reaching the method?

You could rewrite it to act as guard clauses, and either use a debugger as suggested or add an alert to the body of the IF for each of these to see which ones are hit.

if (! nameValid(name)){ return false;}
if (! telValid(tel)){ return false;}
....//continue for all etc.

//if none of these returned false just return true
return true;
link|flag
vote up 1 vote down

I think the problem is in the if statements.

Q: Why isn't descriptionValid being called?
A: One of the if statement is returning false.
S: Break up the if statements.

link|flag
vote up 3 vote down

In validateForm() you have:

var description = document.getElementById("annonsera_des");

but you call:

descriptionValid(des)

Where is des? Instead, you should write:

if(descriptionValid(description)){

Passing des (which is undefined) is a problem.

link|flag
This is the correct answer – jitter Nov 5 at 17:38
Funny thing is, he edited the question to change it to the incorrect variable name. – mmyers Nov 5 at 17:45
vote up 0 vote down

If you put an alert here:

                            ...

                            if (headlineValid(headline)){
                                alert('foo');
                                if(descriptionValid(description)){
                                    return true;
                                }
                            }

                            ...

Does the alert box show up? Validation methods not getting called and the form "just submitting" has usually meant that there's a JavaScript error somewhere in the validation code and it aborts there. If this alert box does not show up, move it upwards in your if hierarchy until it does - that would point you to where the error occurs. Of course, there are more sophisticated methods for debugging this stuff, such as Firebug. Good luck.

link|flag
vote up 1 vote down

Instead of reinventing the wheel, consider jQuery Validation plugin.

link|flag
Great, another -1 again without argumentation. Care to elaborate? Or is it just again me? I'm really getting tired of -1's without argumentation. – BalusC Nov 5 at 17:46
1  
I think it's just a bitter OP downvoting all the answers that are remotely critical of his bad code. – Brian Schroth Nov 5 at 17:49
vote up 1 vote down

I don't know what is wrong with the code offhand, but you really, really should not have a function whose purpose is to check if a field is valid have side effects. Instead of having this:

function descriptionValid(fld){
    if (fld.value=="") {
        document.getElementById("annonsera_descriptionempty_error").style.display='block';
        document.getElementById("annonsera_description").focus();
        document.getElementById("annonsera_descriptionshort_error").style.display='none';       
        return false;
    }

you should just have this:

function isDescriptionValid(fld) {
    return (!fld.value=="");
}

and then put your display changing code within an if block that calls isDescriptionValid. (really, you shouldn't have a special function at all, and should just do the "if(description.value != "")" logic on its own)

Really this is just a very awkward design for validation and you should consider refactoring the whole thing.

link|flag
if it works, it works! – camran Nov 5 at 17:33
1  
@camran: You asked for a fix? Here it is: You're fired. Seriously, "if it works, it works" is a really bad response to someone pointing out bad code. It's about as good as "Hey, it compiles. It must be right.". – Ken White Nov 5 at 17:36
I realize this doesn't answer the question, but it's still relevant and doesn't deserve a downvote. This design is very bad and will only lead camran to more problems after he fixes this one (for instance, by nesting all the validation logic, only the first error found will be shown to the user, even if he cleans the code and uses && instead) – Brian Schroth Nov 5 at 17:38
And that's the problem: It doesn't work. And boolean getter functions that mysteriously have side effects are a maintenance nightmare. Anyone reading the code and seeing a function named "isDescriptionValid" is going to expect it to check if the description is valid, not check if it's valid AND show and hide things. If it's going to do that, it should be named "showDescriptionValidationIfRequired" or a similar name that describes what the function actually does. – Brian Schroth Nov 5 at 17:41
+1 to compensate the downvote – LB Nov 5 at 17:46
show 1 more comment
vote up 1 vote down

I wont nag about your coding-style, as I'm sure there will be lots of that anyway :)

Use Firebug to set a breakpoint and then step through the execution of your script to see what is wrong.

link|flag
vote up 1 vote down

You have way too many nested if's.

link|flag
i didn't know there's a maximum... – wishi_ Nov 5 at 17:21
that cant be the reason the function doesnt get called ??? – camran Nov 5 at 17:21
@Daniel, nonsense I've seen WAY more than that in code, were talking TDWTF kind. – Tim Meers Nov 5 at 17:23
why downvoted!! he is having valid point. – Rakesh Juyal Nov 5 at 17:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.