Skip to content

Instantly share code, notes, and snippets.

@DmitrySikorsky
Created January 20, 2017 19:26
Show Gist options
  • Save DmitrySikorsky/d12e5f33532084c0876e079fcb02602c to your computer and use it in GitHub Desktop.
Save DmitrySikorsky/d12e5f33532084c0876e079fcb02602c to your computer and use it in GitHub Desktop.
function uploadFiles(inputId) {
var input = document.getElementById(inputId);
var files = input.files;
var formData = new FormData();
for (var i = 0; i != files.length; i++) {
formData.append("files", files[i]);
}
$.ajax(
{
url: "/uploader",
data: formData,
processData: false,
contentType: false,
type: "POST",
success: function (data) {
alert("Files Uploaded!");
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment