Skip to content

Instantly share code, notes, and snippets.

@zdimaz
Created May 12, 2020 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zdimaz/675982241a41181710b1ddbfe41235c4 to your computer and use it in GitHub Desktop.
Save zdimaz/675982241a41181710b1ddbfe41235c4 to your computer and use it in GitHub Desktop.
jq ajax form simple
/* ==============================================
Name function
============================================== */
if($("form").length){
$('form').submit(function(e) {
e.preventDefault();
$.ajax({
type: $(this).attr('method'),
url: $(this).attr('action'),
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
success: function(result) {
alert(result);
},
error: function(response) {
alert("Ошибка. Данные не отправленны." + response);
}
});
});
};
/* ==============================================
End of Name function
============================================== */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment