Amiya Sahu Developer

How to get checked radio button value in JQuery

This piece of code will help in getting the selected radio value.

$("input[name=my-radio]:checked").val();

Here is a live example.