In jQuery, if I assign class=auto_submit_form to a form, it will be submitted whenever any element is changed, with the following code:
class=auto_submit_form
/* autom
I would give an id to the form:
$(".auto-submit-item").change(function() { $("form#auto-submit").submit(); });