Click to See Complete Forum and Search --> : Validating then navigating


dezoconnor
03-13-2003, 11:55 AM
Can someone please help me?

I've created a form that users must fill in to proceed further into my website. That part was easy. What I can't do is Validate all the fields and then when the submit button is pressed allow the page to go into the next page. Make sense?

Cheers

gil davis
03-13-2003, 12:06 PM
It's all in the form tag...<form action="nextpage.htm" onSubmit="return validate(this)">
If the validation returns false, the form action is halted, and it does not navigate. If the validation returns true, you're on your way.