繰り返し要素がある
<input style="display:inline" class="chkClass" type="checkbox" value="1"/>
<div class="other">
//something
</div>
<input style="display:inline" class="chkClass" type="checkbox" value="1"/>
<div class="other">
//something
</div>
....
チェックボックスの変更により、次の「その他」クラスのみを表示したい。それは動作しません:
$('.other').hide(); //hide all "other" elements
$('.chkClass').live('change', function(){
if($(this).is(':checked')){
$(this).next('.other').show();
}
});