I have a form that runs a piece of javascript to validate using onSubmit="return fnValidateForm(this);"
I need to run another piece of javascript when the submit button is pressed, how can I do this?
I have tried onSubmit="return fnValidateForm(this); fnother();" but that only ran the first javacsript and ignored the second.
I need to run another piece of javascript when the submit button is pressed, how can I do this?
I have tried onSubmit="return fnValidateForm(this); fnother();" but that only ran the first javacsript and ignored the second.