Answers for "set radio button checked from value"

0

get value of selected radio button using javascript

document.getElementById('submit').onclick = function() {
    var radios = document.getElementsByName('contact');
    for (var radio of radios)
    {
        if (radio.checked) {
            alert(radio.value);
        }
    }
}
Posted by: Guest on June-10-2021
0

set radio button group value

$("input[name=mygroup]").val([5]);
Posted by: Guest on May-06-2021

Code answers related to "set radio button checked from value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language