Hi
I am creating a web site which will allow people to select the month of the year.
My previous attempts at anything like this was to create a select drop down list:
<select name="month">
<option selected>Select</option>
<option>January</option>
<option>February</option>
<option>March</option>
etc
then use the input type 'submit' :
<input type="submit" name = 'submit' value="Submit" />
This works fine but requires the grey submit button be present on the web page.
My question is - Is there another method to process this selection (preferably when the month is selected rather than having to display abd hit the 'Submit' button.
Many Thanks
Dave