I need to do something like this:
<asp:RadioButton ID="rbDate" runat="server" Text="Date" GroupName="grpPrimary" />
and be able to check the value of the radio button's checked value in jQuery, but my attempts like these don't return true/false.
if ($('[name=rbDate]').attr("Checked"))
if ($('[name=rbDate]').attr("Checked").val())
if ($('[name=rbDate]:checked').val())
A little help?
This is probably the easiest way to do it. The *= searches the whole id attribute for rbDate which takes care of the whole ASP.NET id mangling.
Here is my JQuery solution that uses the asp.net ID:
INamingContainer adds a bunch of stuff to the beginning of the id of the actual html.
using the [id$=rbDate] bit on the selector tells jQuery that you want the input with an id that ends in rbDate
Now if you had a that you wanted to get the selected value of the entire list you might do something like
which, were one of the items selected would return the value of the selected , or , in that radio button list.
While ChaosPandion's answer will work it would be faster to wrap your
RadioButtonList
in a div like this:Then your jQuery code can be this simple: