Skip to content
Snippets Groups Projects
Commit 8956571d authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Contact form error handling

parent 7170696a
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,20 @@
url: $(selector).attr("action"),
data: $(selector).serialize(),
success: function(response) {
$(selector + " :input").prop("disabled", true);
$(selector).prepend(response);
$(selector).html(response);
},
statusCode: {
429: function() {
if (jqXHR.getResponseHeader("Retry-After")) {
alert("Too many requests from your network. Please try again in "
+ jqXHR.getResponseHeader("Retry-After") + " seconds.");
} else {
alert("Too many requests from your network. Please try again later.");
}
}
},
error: function(jqXHR, error_type, e) {
alert("Sorry, an error occurred. Please try again, or email me.");
}
});
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment