I have a function that triggers a number of other functions:
function formvalidation()
{
ZeroSite();
BlankPC();
BlankSite();
BlankSeats();
}// End of formvalidation
and a form like so:
<form id="quote" name="quote" method="get" onSubmit='return formvalidation();' action="testing.php">
The problem being, if one of the individule functions returns flase then the form still gets submitted, is there any way of passing the return false to the parent function?
Thanks for looking, B.
formvalidationfunction doesn't return anything - that's the first thing you need to fix