this piece of code will loop for several time; When any user select any of the radio button I want to find which radio button is selected; With the selected index i want to get address_ object; now i want to access its siblings div values like addressLine_1, addressLine_2, addressLine_3, city, state, zip in a variable.
Please help to me write this piece of Jqery script.
<div class="address">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="8%" align="center"><input type="radio" name="addressSelected" value="1" /></td>
<td class="address_0" width="92%">
<div class="addressLine_1">gotomedia LLC</div>
<div class="addressLine_2">2169 FOLSOM ST</div>
<div class="addressLine_3">STE M301</div>
<div class="city floatLeft">SAN FRANCISCO</div>
<div class="state floatLeft"> CA</div>
<div class="zip floatLeft"> 94110</div>
</td>
</tr>
</table>
</div>