チェックボックスがオフの場合はdivを表示し、チェックされている場合は非表示にしようとしています。私はこれを持っていますが、何かが欠けているようです:
HTML:
<input name="billing_check" id="billing_check" type="checkbox" class="billing_check" size="40" checked="checked"/>
<div class="registration_box01 showme">
<div class="title">
<h4>billing information - infomration associated with your credit card<br />
</h4>
</div>
</div>
Javascript:
$("input[name='billing_check']").change(function() {
(".showme").toggle($("input[name='mycheckboxes']:checked").length>0);
});
スタイル:
.showme{
display:none;
}