Click to See Complete Forum and Search --> : Disable a radio button


jkruer01
12-18-2002, 02:02 PM
Does anyone know how to disable a radio button? I want the radio button to display but not to let the user click on it.

Thanks!

swon
12-18-2002, 02:18 PM
Make it with a readonly:

<input type="radio" name="some" value="1" readonly>

or with disabled

<input type="radio" name="some" value="1" disabled>

jkruer01
12-19-2002, 06:15 AM
Thanks,

The disabled worked but the readonly didn't. Thanks for the help.