Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from ZackMattor/form.js
Last active August 29, 2015 14:05
Show Gist options
  • Save RimonEkjon/ac882ebe0f2aa82f0bc0 to your computer and use it in GitHub Desktop.
Save RimonEkjon/ac882ebe0f2aa82f0bc0 to your computer and use it in GitHub Desktop.
Jquery-ajaxForm-Submit
$('.ajax-forms').submit(onAjaxFormSubmit);
var onAjaxFormSubmit = function(evt) {
evt.preventDefault();
var $form = $(this);
var data = $form.serialize();
var path = $form.attr('action');
$.post(path, data, function() {
console.log('This shit posted successfully');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment