Answers for "how to check if a radio button is not checked"

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
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 "how to check if a radio button is not checked"

Code answers related to "Javascript"

Browse Popular Code Answers by Language