Re: Submitting a FORM using JavaScript
Posted By:
Nitesh_Naveen
Posted On:
Thursday, January 2, 2003 03:02 AM
it is not because the submit button is present that the function doesn't work... its probably because you've named the submit button as submit. Once you have a form element with the name 'submit' you'll land up in problems bcoz the element takes precedence over the submit function. Rename the submit button to say 'm_submit' and see...