Adding Radio Button Values
Hi, I have been trying to find a solution or this for ages but have got one nowhere
I want to add the value of the radio buttons for different questions and have it saved in a hidden textbox.
is it possible ??
here is the code
<DIV class="quest" id="sec19">
<TABLE width="20%">
<TR class="question">
<TD>1. Question one
<TD align="right">
<INPUT type="radio" name="Question one" id="sec191" value="0" onclick="add19(this.value)">
<INPUT type="radio" name="Question one" id="sec191" value="2" onclick="add19(this.value)">
<INPUT type="radio" name="Question one" id="sec191" value="5" onclick="add19(this.value)">
<INPUT type="radio" name="Question one" id="sec191" value="10" onclick="add19(this.value)">
<TR class="question">
<TD>2. Question two
<TD align="right">
<B> No </B><INPUT type="radio" name="Question two" id="sec192" value="0" onclick="add19(this.value)">
<B> Yes </B><INPUT type="radio" name="Question two" id="sec192" value="10" onclick="add19(this.value)">
<TD align="right"><INPUT type="hidden" name="sectotal19" id="sectotal19" value="" class="textbox" maxlength="5" size="5">
</TABLE>
</DIV>
<DIV class="quest" id="sec20">
<TABLE width="20%">
<TR class="question">
<TD>1. Question three
<TD align="right">
<INPUT type="radio" name="Question three" id="sec201" value="0" onclick="add20(this.value)">
<INPUT type="radio" name="Question three" id="sec201" value="2" onclick="add20(this.value)">
<INPUT type="radio" name="Question three" id="sec201" value="5" onclick="add20(this.value)">
<INPUT type="radio" name="Question three" id="sec201" value="10" onclick="add20(this.value)">
<TR class="question">
<TD>2. Question Four
<TD align="right">
<B> No </B><INPUT type="radio" name="Question Four" id="sec202" value="0" onclick="add20(this.value)">
<B> Yes </B><INPUT type="radio" name="Question Four" id="sec202" value="10" onclick="add20(this.value)">
<TD align="right"><INPUT type="hidden" name="sectotal20" id="sectotal20" value="" class="textbox" maxlength="5" size="5">
</TABLE>
</DIV>
Re: Adding Radio Button Values
You've already been told on your other thread
Quote:
this is a java forum, i dont think they do javascript here
Now please find a JavaScript forum and stop posting off topic questions here.
db
Re: Adding Radio Button Values
Try JavaScript - SitePoint Forums
I'm sure they will be able to help you there.
Re: Adding Radio Button Values