-
-
Save RimonEkjon/b530ef9fa749b4eafdca to your computer and use it in GitHub Desktop.
JQuery- ajaxForm-submit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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