我的页面中有一个带有more info
按钮的日历。
单击该按钮会打开,但不会关闭。
我怎样才能关闭它?
按钮:
$('a.cmoreinf').live('click', function() {
$('.ccontent').each(function() {
$(this).css('display','none');
});
$(this).closest('.calsingleentry').find('.ccontent').css('display','block');
return false;
});