Hi,
I am trying to change to selected value of radio button using value selected in dropdownlist but the selected value of radio button is not toggling.
For example, here is an analogous code of actual code.
Select any button:
<select id="ddlTest">
<option value="1">Value 1</option>
<option value="2">Value 2</option>
<option value="3">Value 3</option>
</select><br>
<input type="radio" name="test" id="tst1" value="1" />
<input type="radio" name="test" id="tst2" value="2" checked="checked" />
<input type="radio" name="test" id="tst3" value="3" />
if i select value 3 from ddlTest, radio button with id tst3 should be checked and radio button with calue 2 should be unchecked.
How can i achieve this using javascript?
Thanks in Advance :)
I