What I wanna do is when u click a radio button for it to open certain fields up for editing & if u choose another radio button then the fields associated to the radio buttons that are not clicked become "disabled" or "grayed out".
Like here is some sample code..
Thanks very much for any help with this!
Cheers!
Like here is some sample code..
PHP Code:
// First Option
<input type="radio" name="method" value="all">Option #1</td>
// If radio button above is selected then this select field is "opened up"; otherwise it is disabled
<select size='1' name='id[143]'>
<option value='1'>blah</option>
</select>
// Option #2
<input type="radio" name="method" value="individual">Option #2:</tr>
// Same deal as above; however the amount of select fields shown below this radio button is dynamic
<select size='1' name='id[450]'>
<option value='1'>blah</option>
</select>
<select size='1' name='id[451]'>
<option value='1'>blah</option>
</select>
<select size='1' name='id[452]'>
<option value='1'>blah</option>
</select>
Cheers!

Comment