I've got a series of yes/no question - if the user selects 'yes' - I display a hidden div with additional questions:
$("#flexsched").css('display', 'none'); $("[EMAIL PROTECTED]'flexschedule']").click(function() { $("[EMAIL PROTECTED]'flexschedule']:checked").val() == 'No' ? $('#flexsched').hide('fast') : $('##flexsched').show('fast') }); What I'd like to do is if the user clicks 'yes', then 'no' again - hiding the optional questions - I'd like to clear any they might have checked in the optional question. So if they click 'yes' again - they are presented with a clean slate. So far I haven't had any success... Any ideas? Thanks!!! Jim