Ok, so I\'ve got a jQuery code which constructs my radio inputs from XML data, like this:
var items = xml.children(\'item\'); if (items.length > 0) {
$('form input[type="radio"]').not(':checked').each(function() { $(this).addClass('unchecked'); // or $(this).slideUp('slow'); });
Obviously the element you use is up to you but the :unchecked selector is what you're after.