Forum Moderators: open
I should have been a bit more specific. I have included an example below.
What I am trying to acheive is when the textbox is focused any radio that is checked wil become unchecked.
<form name="myform">
<p><input type="radio" value="1" name="rg" id="one" checked>a</p>
<p><input type="radio" value="2" name="rg" id="two">a</p>
<p><input type="radio" value="3" name="rg" id="three">c<br>
<input type="text" name="T2" size="20" onfocus="document.myform.all.checked='false'"></p>
</form>