how do we auto selected a radio button when the user enters a numeric value in a textbox?
my code for radio button and text box are as follows:
can anyone pls help cause I'm really stuck here. Thanks.
my code for radio button and text box are as follows:
Code:
<li>Do you like your membership priviledge? <br /> <input type="radio" name="think" id="yes" value="yes"> <label for="yes">Yes</label> <br /> <input type="radio" name="think" id="no" value="no"> <label for="no">No</label> </li> <li>If you answered Yes to the above, how much more would you be willing to pay? $<input class="blue" type="text" name="money" /> </li>
Comment