I have MVC html control for radiobutton like:
<%= Html.RadioButton("Choice", false, new { onclick = "Accept()" })%><label for="Choice">Yes</label>
<%= Html.RadioButton("Choice", false, new { onclick = "Deny()" })%><label for="Choice">No</label>
How to get radio button selection with JQuery?