Answers for "how to check if only one radio button is selected in javascript"

12

js check if radio button is checked

if(document.getElementById('gender_Male').checked) {
  //Male radio button is checked
}else if(document.getElementById('gender_Female').checked) {
  //Female radio button is checked
}
Posted by: Guest on April-07-2020
3

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 check if only one radio button is selected in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language