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
untested
$('.myclass input:radio').each(function() { this.css({'style-name':'style-value'}) )};
once the list is rendered, you can possibly manipulate the css client side using the above statement.