Answers for "radio get value input"

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
2

radio input value

<input type="radio" name="test" id="test" value="this is the value">
Posted by: Guest on October-30-2020

Code answers related to "radio get value input"

Code answers related to "Javascript"

Browse Popular Code Answers by Language