Is it ok to do use .ajaxForm several times?
Is there a problem with binding a form with .ajaxForm several times? Actualy I am doing it on each ajaxStop event like this:
$(document).ajaxStop(function(){
$(options.selector).ajaxForm(options.ajaxFormOptions);
})
I am doing it like this because in other parts of my script the form object may have been replaced with data, so the ajaxForm binding is lost, so I need to prevent that rebinding it after each ajaxStop event.