skip to Main Content

Jquery – Return nth child of a radio button group

I have three radio buttons in a group thus: <div class="form-check ml-4"> <input class="form-check-input" type="radio" name="1" id="1" value="First"> <label class="form-check-label" for="1">First</label> </div> <div class="form-check ml-4"> <input class="form-check-input" type="radio" name="1" id="2" value="Second"> <label class="form-check-label" for="2">Second</label> </div> <div class="form-check ml-4"> <input class="form-check-input"…

VIEW QUESTION
Back To Top
Search