garrowsmith
Programmer
I'm doing my nut. Has anyone encountered the netscape bug where it refuses to do anything when using the OnSubmit event handler with a form? I've got a function to validate all the fields within my form, and can't get it to post the data after successful validation.
eg:
...
<script>
function validateForm(){
return true; <- (could document.frm.submit() do it??)
}
</script>
...
<form name="frm" method="post" action="somefile.asp" onSubmit="return validateForm()">
I've used the bog standard submit button but it refuses to post to the page in the action field.
Please help!?!
Graham
eg:
...
<script>
function validateForm(){
return true; <- (could document.frm.submit() do it??)
}
</script>
...
<form name="frm" method="post" action="somefile.asp" onSubmit="return validateForm()">
I've used the bog standard submit button but it refuses to post to the page in the action field.
Please help!?!
Graham