Skip to content

Instantly share code, notes, and snippets.

@mrdougwright
Last active August 29, 2015 14:03
Show Gist options
  • Save mrdougwright/4e13a8678be9552e8fff to your computer and use it in GitHub Desktop.
Save mrdougwright/4e13a8678be9552e8fff to your computer and use it in GitHub Desktop.
$.post(form.prop("action"), parms, function(res) {
if (res.success) {
$(".overlay.hidden").fadeIn().delay(5000).fadeOut();
form.get(0).reset();
}
}, "json");
// Change to this --->>
$.post(form.prop("action"), parms, function() {
$(".overlay.hidden").fadeIn().delay(5000).fadeOut();
form.get(0).reset();
}, "json");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment