Skip to content

Instantly share code, notes, and snippets.

@Tang8330
Created April 5, 2015 00:05
Show Gist options
  • Save Tang8330/b70a1208b724e91bc775 to your computer and use it in GitHub Desktop.
Save Tang8330/b70a1208b724e91bc775 to your computer and use it in GitHub Desktop.
$('form[name=metadata]').submit(function(e) {
var _this = this;
e.preventDefault();
$.ajax({
url: _this.action,
type: _this.method,
data: $(_this).serialize(),
success: function(response) {
$(_this).fadeOut('slow');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment