I'm using a form to submit some hidden values and then automatically redirect to another page.
The form values are working fine and the form works correctly in IE however it returns nothing in FF
I'm just doing a dump of the $_POST array on the pages redirected to but nothing comes up with FF.
My code for the submission is
document.MyForm.submit();
The form is name MyForm in the <form> tag
The error I get in the FF javascript console is "Error: document.MyForm has no properties"
EDIT: Workaround found.......please ignore.