Any ideas how you might use JQuery's deferred methods with a function that detects all changed forms and submits each one as an Ajax post?
I can get the same thing working if I just list a load of form submissions but if I use...
$('form.changed').each(function(){
return $(this).submitWithAjax();
});
A fuller version of the code that I'm trying to get working is here... at JS Fiddle
Thanks in advance!