I have a bit of situation where I have multiple forms on the same page that I need submit via ajax by pressing a single "Save" button. I'm doing this by looping through the forms using $.each and then making the ajax request. The ajax requests are supposed to send back a response (errors / success message).
My problem is - would I be making a mistake by using ASYNC requests, as there might be a problem with matching up which output goes to which form ? What do you guys think ?