Jquery ajax form submit that contains files
Unfortunately the jQuery serialize() method will not include input file elements. So your files are not going to be included in the serialized value. What you should be doing is creating a FormData object, append the files to that. You need to append the form field values as well to this same FormData object. You … Read more