Answers for "how to select a list group item pass data to radio button in html"

55

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
Posted by: Guest on February-09-2020
0

jquery select radio by name

$("input[type='radio'][name='theme']").click(function() {
    var value = $(this).val();
});
Posted by: Guest on April-11-2020

Code answers related to "how to select a list group item pass data to radio button in html"

Browse Popular Code Answers by Language