Skip to content

Instantly share code, notes, and snippets.

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