How to send/ Upload file without using FORMDATA in jquery ajax
问题 How to send/Upload file without using FORMDATA in jquery ajax? Because IE does not support FORMDATA... here is the working code... $(document).ready(function () { $("#btnUpload").on("click", function () { var file_data = $("#UploadedFile").prop("files")[0]; // Getting the properties of file from file field var form_data = new FormData(); // Creating object of FormData class form_data.append("file", file_data) // Appending parameter named file with properties of file_field to form_data form