Created
May 22, 2012 19:40
-
-
Save digitalkaoz/2771156 to your computer and use it in GitHub Desktop.
jquery ajax form rebind error
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