Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
This final piece of code is nothing groundbreaking—we will be using methods that we covered earlier in the chapter. If the world were a perfect place, then the user would have filled out the form properly. However, this isn't always the case, so now that we have gone through and made the necessary checks for missing or erroneous data, we need to pass on what we have found to the user. We will use a simple if statement to accomplish this.
// Letting the user know what was missed
if ((requiredFieldsErrorMessage) ||
(whatTheyWantErrorMessage) || (emailErrorMessage) ||
(areaCodeErrorMessage) || (zipCodeErrorMessage))
{
…
}
else
{
…
}
}
// Stop hiding the code here -->
</SCRIPT>