Forum Moderators: open
Unfortunately, I don't know how to trigger a submit when a menu option is selected. Does anyone have any suggestions?
Thanks!
This can be achieved by firing a javascript funtion using the onChange event handler:
<select id="select_ID" onChange="submit_form()">
However, I would caution against using this from a usability perspective. If the user selects the wrong option by mistake you are forcing them into the situation whereby they have submitted the form with incorrect information...