Answers for "how to apply if/else if the radio button is checked in jquery"

4

if radio checked jquery

$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
Posted by: Guest on October-13-2020

Code answers related to "how to apply if/else if the radio button is checked in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language