SharePoint 2013- How to check using jquery/JavaScript, any option of radio button is selected or not without using ID or name?

SharePoint 2013- How to check using jquery/JavaScript, any option of radio button is selected or not without using ID or name?

Hi ,

Below is html Code.How to check using jquery/JavaScript, any option of radio button is selected or not without using ID or name as control id and name will change in production(pl also refer attached image) and please consider there are two radio button in page with same value Yes,No but with different Label like for below one it's "Will you site contain ZNA records" and for second one is "Do you want team site"


<tr>

<td width="190px" valign="top" class="ms-formlabel"><h3 class="ms-standardheader"><nobr>Will your site contain ZNA Records?<span class="ms-formvalidation"> *</span></nobr></h3></td>

<td width="400px" valign="top" class="ms-formbody"><span dir="none"><table cellpadding="0" cellspacing="1">

<tbody>

<tr>

<td><span class="ms-RadioText" title="Yes"><input id="ctl00_ctl44_g_c11829d7_aa76_49cc_862a_14f0a58d7c40_ff331_ctl00_ctl00" type="radio" name="ctl00$ctl44$g_c11829d7_aa76_49cc_862a_14f0a58d7c40$ff331$ctl00$RadioButtons" value="ctl00"><label for="ctl00_ctl44_g_c11829d7_aa76_49cc_862a_14f0a58d7c40_ff331_ctl00_ctl00">Yes</label></span></td>

</tr>

<tr>

<td><span class="ms-RadioText" title="No"><input id="ctl00_ctl44_g_c11829d7_aa76_49cc_862a_14f0a58d7c40_ff331_ctl00_ctl01" type="radio" name="ctl00$ctl44$g_c11829d7_aa76_49cc_862a_14f0a58d7c40$ff331$ctl00$RadioButtons" value="ctl01"><label for="ctl00_ctl44_g_c11829d7_aa76_49cc_862a_14f0a58d7c40_ff331_ctl00_ctl01">No</label></span></td>

</tr>

</tbody></table></span>

</td>

</tr>