I have code like this:
<div id="info_123" style="display:none;">
<input type="text" name="info">
</div>
<input type="radio" value="123">
<input type="radio" value="456">
<input type="radio" value="789">
if I click radio button with value="123" that div show, and if I click radio button with value="456" or value="789", that div hidden.(key = values of checked radio button)
my question : how to display/hide a hidden div with radio button values key with javascript code?
Bad english, sorry..