Skip to content

Instantly share code, notes, and snippets.

@gorgogol
Created August 16, 2014 10:12
Show Gist options
  • Save gorgogol/3428b20e7ba17a6f6a5f to your computer and use it in GitHub Desktop.
Save gorgogol/3428b20e7ba17a6f6a5f to your computer and use it in GitHub Desktop.
Posting a form with jquery.
jQuery(document).ready(function($){
$('form#aForm').on('submit', function(e){
e.preventDefault();
$.post(
url: form.attr('action');
data: form.serialize(),
success: function(data){
//
},
error: function(data){
//
}
);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment