I need to find out what is the selected value of RadioButtonList:
<div class="editor-field radio-button-list">
<%= Html.RadioButtonListForEnum("Type", Model.Type)%>
</div>
I tried to use: $("#Type").find(":checked").val()
but all I get is "undefined"... Any ideas?