onsubmit="return checkscript()" onsubmit="return FrontPage_Form5_Validator(this)"
I have two scripts which need to run on the onsubmit call, how can I do this?
onsubmit="checkscript(); FrontPage_Form5_Validator(this);"
Im not sure about the return. Does the functions return anything?
Presumably these functions return false if the submission is to fail, and true if it is to succeed. Since both have to succeed:
return checkscript() && FrontPage_Form5_Validator(this)
Is FrontPage still around?