I have a page which contains several forms. I want to add a single submission button that will allow all the forms to be saved at the same time, as illustrated below:
This should submit each form via ajax without having to map the fields yourself:
$('form').each(function() { var that = $(this); $.post(that.attr('action'), that.serialize()); });