Upload status for every file in JS – Jquery ajax
I'm trying to build input to upload multiple files and get response from server to update a UI. I built something like this using jQuery: function UploadFile(file) { return new Promise((resolve) => { $.ajax({ url: "/api/admin/upload", type: "POST", data: file,…