Is there any way to set a CSS class on an input item in a radio button list? I\'d like to reference these form values by class in jQuery.
Given an ASP.NET RadioButto
Yes, RadioButtonList renders horrible HTML.
Anyway, it's still easy to get them from jQuery.
Try
$('span.myclass input:radio')
Above will get all the radio buttons inside the span with class 'myclass'.