Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My return values are not working, and I need them to work so I can validate the page. I have a function in a function because there will be more code written which will require that kind of setup.

Here is the JavaScript code:

var postalconfig = /^\D{1}\d{1}\D{1}\-?\d{1}\D{1}\d{1}$/;

function outer(){
    function checkpostal(postal_code){
      if (postalconfig.test(document.myform.postal_code.value)) {
        alert("VALID SSN");
        return true;
      } else {
        alert("INVALID SSN");
        return false;
      }
    }
  checkpostal();
}

And the HTML:

<form name="myform" action="index.php" onSubmit="return outer();" method="post">
    Postal Code <input name="postal_code"  type="text" />
    <input name="Submit" type="submit"  value="Submit Form" >
</form>
share|improve this question
What do you mean by "not working"? Do you mean that the function returns the correct result, but the submission happens anyway? – JacobM Feb 3 '11 at 22:05
with better formatting sometimes these things popout at us. I suggest a notepad type program like notepad++ if you're not already using a javascript oriented IDE to help you keep your code organized and properly indented. (reindent as C style code usually works pretty well). – jcolebrand Feb 3 '11 at 22:09
Seconding @drachenstern's point. jsbeautifier is a good tool for this too. – lonesomeday Feb 3 '11 at 22:12
Thanks guys I'll work on better formatting for the future. – Christopher Hunt Feb 3 '11 at 22:19
Well the fact that you're grasping the concepts of closures is good and well enough. Keep up the good work and come on back with more questions as you get them ;) – jcolebrand Feb 3 '11 at 22:27

4 Answers

Change checkpostal(); to return checkpostal();

like this:

var postalconfig = /^\D{1}\d{1}\D{1}\-?\d{1}\D{1}\d{1}$/;

function outer(){   

  function checkpostal(postal_code) {
    if (postalconfig.test(document.myform.postal_code.value)) {
      alert("VALID SSN");
      return true;
    } else {
      alert("INVALID SSN");
      return false;
    }
  }

  return checkpostal();

}
share|improve this answer

The problem here is that you are getting the return value of outer, but outer doesn't return anything. return true (or false) only affects the current function, in this case, checkpostal.

You need to get outer to return the return value of checkpostal:

function outer() {
    function checkpostal(postal_code) {
        if (postalconfig.test(document.myform.postal_code.value)) {
            alert("VALID SSN");
            return true;
        } else {
            alert("INVALID SSN");
            return false;
        }
    }

    return checkpostal();
}
share|improve this answer
You need a space in there. :) – Jared Farrish Feb 3 '11 at 22:08
@Jared Um, yes. Thanks! – lonesomeday Feb 3 '11 at 22:09
No problem. – Jared Farrish Feb 3 '11 at 22:11
So it's like the return-value is stuck inside the inner function and doesn't reach the onSubmit? Am I on the right line of thinking here? – Christopher Hunt Feb 3 '11 at 22:17
@Christopher Sort of. return exits the current function. It does not exit parent/calling functions. If you want to return from them, you have to do so explicitly by passing along the return value. – lonesomeday Feb 3 '11 at 22:18

Looks like at the end of outer() it should be

return checkpostal();

rather than just

checkpostal();

The call to checkpostal() may return correctly, but onsubmit won't get the result, since outer() isn't returning anything.

share|improve this answer
So it's like the return-value is stuck inside the inner function and doesn't reach the onSubmit? Am I on the right line of thinking here? – Christopher Hunt Feb 3 '11 at 22:17
Sure. Another way to think of it is that onSubmit is calling a function and expecting that function to return something. What happens inside that function doesn't matter -- it isn't returning anything. – JacobM Feb 3 '11 at 22:18

You'll want to return the call to checkpostal:

function outer(){   

    function checkpostal(postal_code){
 if (postalconfig.test(document.myform.postal_code.value)) {
  alert("VALID SSN");
  return true;
 } else {
  alert("INVALID SSN");
  return false;
 }
}

return checkpostal();

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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