ここに実例があります:http://jsfiddle.net/infatti/esLMh/
「いいえ」が非表示に切り替えられないのはなぜですか?
$('.hide-show input').change(function() {
$(this).closest('.hide-show').next('.hide-show-yes').toggle(this.value == 'yes');
$(this).closest('.hide-show').next('.hide-show-no').toggle(this.value == 'no');
});
$('.hide-show input:checked').change(); //trigger correct state onload