How to get selected value from ASP.NET RadioButtonList using JQuery

Below code will give you the Solution. 
  1. var radioValue = $('#<%=RadioButtonList1.ClientID %> input[type=radio]:checked').val();  
By using above code you can get the Selected value from a ASP.NET RadioButtonList.
 
Hope you like this. Keep learning and sharing!