The problem statement is simple. I need to see if user has selected a radio button from a radio group. Every radio button in the group share same id.
The problem is
Use Below Code
$('input[name=your_radio_button_name]:checked').val();
Please note, value attribute should be defined so could get "Male" or "Female" in your result.
Male Female