Hi,
I have a page that makes liberal use of javascript for various validations and other tasks. One of these is that the submit click leads to some computations and setting of some values in cookies and hidden fields followed by the script invoking the submit method on the form. Problem is the script references for example the submit for form -
<form action="/logon" method="POST" name="logonForm" enctype="application/x-www-form-urlencoded" autocomplete="off">
.
.
</form>
with Javascript -
document.logonForm.submit();
This does not work in zombie - I get an error message that states - "TypeError: Cannot read property 'submit' of undefined".
Any idea how this can be resolved?