Hello,

I've got 2 forms on a page, what I want to do is have the first form
submit via jquery form plugin

ex:

        $(this).ajaxSubmit({
            target:        '#reg',
            beforeSubmit:  showRequest,
            success:       showResponse
        });


and have the 2nd forms data appended to first forms data. So in theory
sending both forms in one submit click, in one request to server.

I have tried to serialize both forms together, but nothing seems to
work:

        var str =  $("#frm_ad").serialize();

and adding str to "data" option on ajaxform, but this doesn't supply a
good.

I hope you can help.

Mark Willis

Reply via email to