how to get a radio value in jquery code example
Example 1: get value for radio button in jquery label
//id you have a label to your checkbox use this one
$("input[type='radio']:checked").parent().text()
Example 2: How can I know which radio button is selected via jQuery
if ($('input[name="radioName"]:checked', '#myForm').length) {
//Yes, it's checked!
}