Hello all,
I have small query. Within my form, I have following code, for each question.
XXXXXX
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF" class="text">
<input type="radio" name="ans1" value="Yes"> Yes
<input type="radio" name="ans1" value="No"> No </td>
</tr>
XXXXXXX
With the above part, when the form get loaded, no value is selected. Any one option (yes / no) will get selected, when the user clicks one of them.
Now, my problem is : if the person wants to skip the particular selection ( that means the radio button should be brought back to original state of "no button selected" ) then how it is to be done with reference to above code. Is it possible to do this requirement.
Looking for help / feedback.