Skip to content

Instantly share code, notes, and snippets.

@nonzer0
Last active August 29, 2015 14:06
Show Gist options
  • Save nonzer0/17168e7e35bfead6e131 to your computer and use it in GitHub Desktop.
Save nonzer0/17168e7e35bfead6e131 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
return $('.contact-fields').on("ajax:success", function(e, data, status, xhr) {
$('.contact-fields').append(xhr.responseText);
$('#myModal').modal('hide');
}).on("ajax:error", function(e, data, status, error) {
return $('.contact-fields').append('Error');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment