I have a form with a select and a few text inputs. I\'d like the form to be submitted when the select is changed. This works fine using the following:
onchan
You should be able to use something similar to:
$('#selectElementId').change( function(){ $(this).closest('form').trigger('submit'); /* or: $('#formElementId').trigger('submit'); or: $('#formElementId').submit(); */ });