tags:

views:

36

answers:

1

How can I take a serialized form array and create an invisible form and then submit it using jQuery?

+2  A: 

Do you still have "file" inputs? If so, this won't work. Go look at the answer I posted in your "multiple form submit" question. You're going to have to pile all the non-file inputs into the form that's got the completed file inputs in it, and then submit that one. You can't dynamically create file inputs with values; the browser won't let you (security).

The other question is here: http://stackoverflow.com/questions/2368593/submit-multiple-forms-to-same-page

Pointy
Thanks for the downvote, whoever you are! After all, I had the gall to provide an answer to the question Brian's asked like six different times tonight, and to try and explain over and over again why the approaches he so weirdly desires to pursue won't work.
Pointy
@David ha ha, thanks, I guess. It wasn't so much a religious statement as a substitute for something I **really** wanted to type :-)
Pointy