Default behavior for HTML forms (what you're triggering with the .submit() is to immediately follow the form's action upon the completion of the initial action. To override that, you have to take steps to make it work as you'd expect it, doing one submit after the other.
The challenge with your current process is that you're not allowing for any feedback should the submit fail. There's no indicator resulting from the submit that allows the view to notify the user that there's an issue, nor is there anything there to prevent the second from blindly submitting if the first one fails.
Two ways you could attempt to make this happen:
- Combine the forms. Perhaps this goes against your code design, however
- Nest Ajax submits. This allows you to get dynamic "feedback" to the view and start/stop the second submission based on the success of the first, with no default action overriding number 2.
Some considerations:
- if you use a button inside the form, it will submit the form by default unless you do an "override default"
- If you go the ajax route, use
.serialize() on your form to get the values without having to specify them id by id
targetattribute on (one of) the form(s), directing the submission to a frame, or a new page (_blank). – Rob W Dec 9 '11 at 20:52