If you want to have a form with no submit button you can get it to submit when anything within the form changes using this code:
$('form.auto-submit').on('change', function() {
$(this).submit();
});
Simply add class="auto-submit"
to your form.
