Submit multiple forms with one submit button

Something like this would work:

$('#form1_submit_button').click(function(){
    $('form').each(function(){
        $(this).submit();
    });
});

Alternative:

$('#form1_submit_button').click(function(){
    $('#form1 #form2 #form3').submit();
});

Leave a Comment