Skip to content

Instantly share code, notes, and snippets.

@deyvicode
Last active March 23, 2021 17:20
Show Gist options
  • Save deyvicode/9b905ac3af4e2ad4c4830fa3592bc68c to your computer and use it in GitHub Desktop.
Save deyvicode/9b905ac3af4e2ad4c4830fa3592bc68c to your computer and use it in GitHub Desktop.
Send form by jquery and ajax
$('#form').submit(function (e) {
e.preventDefault();
let data = new FormData(this);
$.ajax({
url: '/route',
data: data,
processData: false,
contentType: false,
type: 'POST',
success: function (response) {
$('#form')[0].reset();
// code
},
error: function (error) {
// code
}
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment