how to select a list group item pass data to radio button in html code example
Example 1: radio buttons html
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
Example 2: jquery select radio by name
$("input[type='radio'][name='theme']").click(function() {
var value = $(this).val();
});