Skip to content

Instantly share code, notes, and snippets.

@codepainkiller
Created September 14, 2018 23:06
Show Gist options
  • Save codepainkiller/2a8f2b9192256679fe5b6aab0a74aadf to your computer and use it in GitHub Desktop.
Save codepainkiller/2a8f2b9192256679fe5b6aab0a74aadf to your computer and use it in GitHub Desktop.
Ajax Upload file
$('#form').on('submit', function (e) {
e.preventDefault();
const formData = new FormData(this);
$.ajax({
method: 'post',
url: '/ajax/path',
data: formData,
cache: false,
contentType: false,
processData: false,
}).done(function (response) {
console.log(response);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment