|
how to make a drop down box submit a form
If you want a drop down box to submit a form there is a nice easy method of doing this
in the select statement simply add
<select name="CustomerID" onchange="form.submit();">
where CustomerID is the name you have given to your select box
sometime in google chrome this doesn't work if you have a submit button named submit.
The simple way around this is to change the submit button to another name.
|
|