Answers for "check validation if radio 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

Code answers related to "check validation if radio selected or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language