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
$(function() { $("#submit").click(function() { alert($('input[name=s_2_1_6_0]:checked').val()); }); });`