Answers for "check radio button is selected or not"

5

check if radio button is checked

$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
Posted by: Guest on October-13-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
0

radio button not checked

$('input:radio[checked=false]');
this will also work

input:radio:not(:checked)

or

:radio:not(:checked)
Posted by: Guest on October-04-2021

Code answers related to "check radio button is selected or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language