Form submit button will not submit when name of button is “submit” [duplicate]

You’re having issues because the name being submit is overriding the form.submit() function reference for that <form>, instead form_29.submit refers to that button, rather than the DOM submit() function.

Leave a Comment