Answers for "how to get checked radio buttons"

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
1

check if one of the radio button is checked

if ($('input[name='+ radioName +']:checked').length) {
           // at least one of the radio buttons was checked
           return true; // allow whatever action would normally happen to continue
      }
      else {
           // no radio button was checked
           return false; // stop whatever action would normally happen
      }
Posted by: Guest on January-18-2021

Code answers related to "how to get checked radio buttons"

Code answers related to "Javascript"

Browse Popular Code Answers by Language