I require to click on a calender icon which in fact brings up a pop-up calender, which I then select to populate the drop down boxes - I'm buliding a site on a hotel booking system hence require this.
I require the following to be populated, once user selects the date from the pop-up calender:
[HTML]Arriving
  <SELE CT NAME id="arriveDay" >
<Option value="" >01</option>
<Option value="" >02</option>
<Option value="" >03</option>
<Option value="" >04</option>
</SELECT>
<SELECT NAME id="arriveMonth ">
<Option value="" >October 2007</option>
<Option value="" >Noverber 2007</option>
<Option value="" >Noverber 2007</option>
<Option value="" >January 2008</option>
<Option value="" >Feburary 2008</option>
</SELECT>[/HTML]
Also is there an easier way to write out the options for the drop down? i.e. 1..31 days
I require the following to be populated, once user selects the date from the pop-up calender:
[HTML]Arriving
  <SELE CT NAME id="arriveDay" >
<Option value="" >01</option>
<Option value="" >02</option>
<Option value="" >03</option>
<Option value="" >04</option>
</SELECT>
<SELECT NAME id="arriveMonth ">
<Option value="" >October 2007</option>
<Option value="" >Noverber 2007</option>
<Option value="" >Noverber 2007</option>
<Option value="" >January 2008</option>
<Option value="" >Feburary 2008</option>
</SELECT>[/HTML]
Also is there an easier way to write out the options for the drop down? i.e. 1..31 days
Comment