Hi, To disable a radio button you need simply put the word 'disabled' inside the object:
<input type=radio name=radio1 disabled> to dynamically change the state of a radio button you can use onClick: <input id=myRadio1 type=radio name=radio1 onclick='myRadio2.disabled = true'> <input id=myRadio2 type=radio name=radio1> and lastly, if you need a more complex solution (which I wont post at this time), you can just create a javascript function that you call from the onClick. Just have the function loop through the radio buttons elements and set 'disabled' = true/false acording to your wishes. Hope that helps Andy --- Tsiris Alexandros <[EMAIL PROTECTED]> wrote: > If anyone replied to my question, could you also > send it to my email? > I keep getting a list server message that my email > is bouncing and the > account is on hold. > > This has happened 4 times today. > > > Thanks again! > > --- > You are currently subscribed to activeserverpages > as: [EMAIL PROTECTED] > To unsubscribe send a blank email to %%email.unsub%% __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.yahoo.com --- You are currently subscribed to activeserverpages as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED]
