I have a feeling this is a super-basic question, but searching hasn't turned up anything.
The stripped-down HTML:
<input name="ID_1" type="radio" value="1" id="A01" /> A01<br>
<input name="ID_1" type="radio" value="2" id="A02" /> A02<br>
<input name="ID_2" type="radio" value="1" id="A01" /> A01<br>
<input name="ID_2" type="radio" value="2" id="A02" /> A02<br>
Let's say the user clicks the first radio.
Then the user clicks the third radio.
What I want is for the first radio to be unchecked...and vice versa.
Same for the second radio and the fourth radio.
Thank you!