I have the following form. I\'d like it to be submitted automatically via jQuery when the user makes a selection, without needing to press the submit button. How do I do thi
even you can do this one:
Choose Toyota Nissan Dodge
$(document).ready(function() { $('#cars').on('change', function() { $('#submit').click(); }); });