jquery - Select specific radio buttons in all groups with no selected checkboxes -
    i need to:    get radio groups no option selected  from groups inputs "data-correctanswer"    is there better way of doing 1 have? (it's working)   jsfiddle   (need select a , h only )   html:   <form class="multiform truefalse">     <ul>         <li>             <input data-correctanswer="correct" name="question1" type="radio"><span>a</span>          </li>         <li>             <input name="question1" type="radio"><span>b</span>          </li>     </ul>     <ul>         <li>             <input name="question2" type="radio" checked="checked"><span>c</span>          </li>         <li>             <input data-correctanswer="correct" name="question2" type="radio"><span>d</span>          </li>     </ul> ...