Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created July 21, 2010 09:44
Show Gist options
  • Select an option

  • Save workmad3/484279 to your computer and use it in GitHub Desktop.

Select an option

Save workmad3/484279 to your computer and use it in GitHub Desktop.
$('.jaxy').live('submit', function() {
var form = this;
var callback = function(data) {
$(form).stopLoadingSpinner();
$('.errors').innerHTML = data.errors
};
$(form).startLoadingSpinner;
$.post(form.action, $(form).serialize(), callback, "json");
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment