特定のクラス名を持つTRに含まれるすべてのラジオボタンを検索しようとしています。
いったん私がラジオの入力を見つけたら(彼らは単純なyes/no choiceです)、ラジオをNoに設定する必要があります
サンプルHTMLは次のとおりです。
<tr class="paramfield263 type0param conditionalhidden">
<td class="paramlist_key">I certify that my organization is exempt from GST and PST</td>
<td class="paramlist_value">
<input type="radio" value="1" id="paramsfield2631" name="params[field263]">
<input type="radio" checked="checked" value="0" id="paramsfield2630" name="params[field263]">
</td>
</tr>
これまでにiveが(noConflictモードを使用して)どのようなものになっているのです:
if (jQuery("tr").hasClass('conditionalhidden')){
if (jQuery("tr td span").hasClass('rsvpparam0')){
//found radios inside span with correct class
//Now need to set the radio choice to No
}
}
ありがとう