$(document).ready(function() { $('#calendar').fullCalendar({ header: { right: 'prev,next today', left: 'title', //right: 'month,agendaWeek,agendaDay', //right: '', lang: "ja", //displayEventTime: true, //displayEventEnd: true, //timeFormat: 'HH:mm', columnFormat: { week: 'M/DD(ddd)', day: 'M/DD(ddd)' }, axisFormat: 'H:mm', //時間軸に表示する時間の表示フォーマット editable: false, // 変更不可 eventLimit: true, // allow "more" link when too many events eventLimitClick:'popover', }, eventClick: function(event) { if (event.target == 'blank') { window.open(event.url); return false; } }, events: [ { title: '【満員御礼】12/28(日)四街道市│築47年リノベーションモデルハウス見学会│紡ぎの家みそら', start: '2025-12-24 00:01', end: '2025-12-24 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/42886/', target: 'self', className: 'uchicoco_r' }, { title: '【Newopen】築47年リノベーションモデルハウス見学「紡ぎの家 ―四街道市みそら―」', start: '2025-12-24 00:01', end: '2025-12-24 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/43082/', target: 'self', className: 'uchicoco_r' }, { title: '【蘇る、築47年の家】リノベーションモデルハウス見学-八千代市高津', start: '2025-12-24 00:01', end: '2025-12-24 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/43094/', target: 'self', className: 'uchicoco_r' }, { title: '築35年リノベーションモデルハウス見学【暮らしを愉しむ×家事ラク】', start: '2025-12-24 00:01', end: '2025-12-24 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/43092/', target: 'self', className: 'uchicoco_r' }, ] }); });