[Solved] javascript terms for functions for registration form
What you will want to do is have each function return a Boolean based on is the values for that item are invalid or valid. For invalid input return false and for valid input return true. Here is a simple example with two functions: function validateOne() { if( /* Input for validateOne is valid */ … Read more