more info
ページにボタンのあるカレンダーがあります。
そのボタンをクリックすると開きますが、閉じません。
どうすれば閉じることができますか?
ボタン:
$('a.cmoreinf').live('click', function() {
$('.ccontent').each(function() {
$(this).css('display','none');
});
$(this).closest('.calsingleentry').find('.ccontent').css('display','block');
return false;
});