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

    Or failng that, could somebody please tell me how to change the properties on the Submit Button ie colour, font and size.

    Cheers
    Dave

      Here are answers for both:

      <form name="month_form" action="whatever.php">
      <select name="month" onclick="document.month_form.submit();">
      <option selected>Select</option>
      <option>January</option>
      <option>February</option>
      <option>March</option>
      </select>
      <noscript> <!-- for users with JavaScript disabled -->
      <button type="submit" name="submit" style="background-color:transparent;border:none">
      <img src="button_image.png" width="100" height="40" alt="Submit">
      </button>
      </noscript>
      </form>
      
        Write a Reply...