up vote 0 down vote favorite
share [g+] share [fb]

Is to possible to submit two forms simultaneously with either javascript or a submit button?

Form structure is ok something like this:

<form name="form1" method="post">
.........
</form>

<form name="form2" method="post">
.........
</form>

And get the data from the two in a array?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

No, this is not possible. You can create a third hidden form, that will serialize fields from both of them.

If you can use jQuery:

var str1 = $("form1").serialize();
var str2 = $("form2").serialize();
$.post(url, str1 + "&" + str2);

You need to make sure that str1 and str2 aren't empty and of course avoid name conflicts between the two forms.

link|improve this answer
@kgiannakakis how to serialize them? how do i do that? any suggestions plz. – Sarfraz Dec 18 '09 at 11:25
@kgiannakakis is it possible without using jquery, i mean through javascript or more precisely without ajax? – Sarfraz Dec 18 '09 at 11:26
THe example kgiannakakis has posted has nothing to do with Ajax. – Pekka Dec 18 '09 at 11:28
@Sarfraz Ahmed: Yes it is possible without jquery, but the code will be much more complicated. If you don't want to use $.post you could use the submit method of a form for example. – kgiannakakis Dec 18 '09 at 12:10
ok thanks for your explanation kgiannakakis :) – Sarfraz Dec 18 '09 at 12:20
show 3 more comments
feedback

The purpose of the <form> tag is to encapsulate the information that the browser sends to the server.

The only way to work around that would be to have some JavaScript that walks through the DOM and pulls info from one form and puts it in the other when the user clicks Submit.

link|improve this answer
feedback

Submiting the two form will trigger two call to the posting URL so you will not be able to get the two data at the same time.

link|improve this answer
feedback

The problem is that submitting a form changes the URL of the page. This means that when one form is submitted, the second form no longer exists in the active page, and cna therefore not be submitted.

You'll need to submit them over AJAX. Do you use any javascript libraries?

link|improve this answer
feedback

No, its not possible on a single page.

AJAX submission could be the aswer, as intimated elsewhere, but another possible solution could be to embed the second form with in another page and put that page within an IFrame on the first page.

Not sure how that would pan out in reality, but may be worth a go try

link|improve this answer
feedback

No, this is not possible.

Back-up a second and tell us what you're trying to accomplish and why you feel two forms are necessary. There may be a more elegant solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.