jchodakowski
Junior Member
Posts: 3
Registered: 4/23/2005
Member Is Offline
|
| posted on 10/23/2008 at 03:44 PM |
|
|
Forgotten what I'm doing...
Got two odd problems with validator pro which are just due to not using it for a long time.
Problem one - when a validation error occurs, the error div flashes in the browser and is gone...
Problem two - when there are no validation errors, the form does not move to the next step.
Any thoughts?
After some additional debug logging, it would appear that no matter what, my form is being submitted and the server, not finding the things it needs
just returns that same page - so it looks like a refresh, but it isn't. It appears as if no matter what is returned to my onsubmit the form is being
submittted.
I should also add that I have to exec the validator inside another function so that I can do some other form manipulation... here's the function:
| Code: |
function validate(theForm) {
var ve = v.exec();
if (ve) {
theForm.jscript.value = "true";
return true;
} else {
return false;
}
}
|
|
|
|
|