I am developing a calendar app for my website, and I am in a bit of a pickle. Here is the html for a part of the app I require help on:
<table border="0" cellpadding="2" cellspacing="4">
<tbody>
<tr>
<td class="main b_width"><strong>Repeat Every:</strong></td>
<td class="main width">
<select name="Day">
<option value="1" selected>no recurrence</option>
<option value="2">days</option>
<option value="3">weeks</option>
<option value="4">month by day</option>
<option value="5">month by week</option>
</select>
</td>
</tr>
<tr>
<td class="main b_width"><strong>At Days:</strong></td>
<td class="main b_width">
<select name="Day">
<option value="1" selected>First</option>
<option value="2">Second</option>
<option value="3">Third</option>
<option value="4">Fourth</option>
</select>
<input type="checkbox" name="Monday" ;> Mon
</td>
</tr>
What i want to know is, the first select box that is created, for the first option 'no recurrence', how would I make all the other select boxes and check boxes inactive, disabling them so no data can be selected, Any help would be much appreciated