Find out whether radio button is checked with JQuery?

$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});

Leave a Comment