radio jquery checked value code example
Example 1: jquery get value of radio input
$('input[name="name_of_your_radiobutton"]:checked').val();
Example 2: if radio checked jquery
$('#element').click(function() {
if($('#radio_button').is(':checked')) { alert("it's checked"); }
});