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
If you're using jQuery, it's as simple as this:
$('#mySelect').change(function() { $('#myForm').submit(); });