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
Delegating the change event to the form fields could solve your problem here.
$('form').delegate('input[type=text], input[type=radio], select', 'change', function(evt){ // your submits here console.log('changed!') });