Hallo all. I got this piece of code:
<div>
<input id="id1" name="radioButton" type="radio">
<input type="text" id="idText1">
<p></p>
<input id="id2" name="radioButton" type="radio">
<input type="text" id="idText2">
</div>
When I select the radio id1 I need to disable idText2 and when I select radio id2 I need to disable idText1. Is there an elegant way?
Kind regards Massimo