Hi,
1) when i clicked to any checkbox, a) i want to select radio in the same div b) unselect the other radios with their checkboxes. 2) When i click to radio, a) select all checkboxes in the same div. b) uncheck the other radios 3) is there any way to get parents without its first parent div?
How can i do that?
<div class="topDiv">
<div class="repeaterDiv"><input type="radio" id="rpt_01_rb" />
<input type="checkbox" id="rpt_01_cb1" />
<input type="checkbox" id="rpt_01_cb2" />
<input type="checkbox" id="rpt_01_cb3" />
</div>
<div class="repeaterDiv"><input type="radio" id="rpt_02_rb" />
<input type="checkbox" id="rpt_02_cb1" />
<input type="checkbox" id="rpt_02_cb2" />
<input type="checkbox" id="rpt_02_cb3" />
</div>
<div class="repeaterDiv"><input type="radio" id="rpt_03_rb" />
<input type="checkbox" id="rpt_03_cb1" />
<input type="checkbox" id="rpt_04_cb2" />
<input type="checkbox" id="rpt_05_cb3" />
</div>
</div>