Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from digitalkaoz/gist:2771156
Last active August 29, 2015 14:05
Show Gist options
  • Save RimonEkjon/b530ef9fa749b4eafdca to your computer and use it in GitHub Desktop.
Save RimonEkjon/b530ef9fa749b4eafdca to your computer and use it in GitHub Desktop.
JQuery- ajaxForm-submit
$(function () {
ajaxForm('.ajax-form');
})
var ajaxForm = function(query)
{
$(query).submit(function(event) {
event.preventDefault();
var $form = $(this);
$.post( $form.attr('action'), $form.serialize(),
function( data ) {
$form.parent().empty().append($(data).find('form'));
ajaxForm($form);
}
);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment