How to get checked radio button value in JQuery
24 Dec 2014This piece of code will help in getting the selected radio value.
$("input[name=my-radio]:checked").val();
Here is a live example.
This piece of code will help in getting the selected radio value.
$("input[name=my-radio]:checked").val();
Here is a live example.