get all input type radio jquery code example
Example 1: jquery select radio by name
$("input[type='radio'][name='theme']").click(function() {
var value = $(this).val();
});
Example 2: How can I know which radio button is selected via jQuery
if ($('input[name="radioName"]:checked', '#myForm').length) {
//Yes, it's checked!
}