Skip to content

Instantly share code, notes, and snippets.

@abcprintf
Created October 10, 2018 02:49
Show Gist options
  • Save abcprintf/59c1ad17456a49e29da269ab763b8ce2 to your computer and use it in GitHub Desktop.
Save abcprintf/59c1ad17456a49e29da269ab763b8ce2 to your computer and use it in GitHub Desktop.
$('form').submit(function(e) {
e.preventDefault();
var formData = new FormData($(this)[0]); // array[0] !important
$.ajax({
url: '{{ url('/url') }}',
type: 'POST',
data: formData,
success: function(result)
{
// result
},
error: function(data)
{
console.log("Error : " + data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment