I have created FormData object from a form using jquery as bellow. and sending it to the controller side to FormCollection
using ajax.
var form = $('#kycFormTab1').get(0);
var data = new FormData(form);
I want to send multiple form data to the ajax. How can i achieve it? How to append form data of the other form to 'data' object?
I want to access form data with name because i am using FormCollection object to the server side. and i am using single FormCollection object for all form.