$(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: 'リフォームの参考に【リノベーションモデルハウス】八千代市高津│築47年', start: '2025-04-30 00:01', end: '2025-04-30 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/35838/', target: 'self', className: 'uchicoco_r' }, { title: '【リノベーションモデルハウス】四街道市千代田│築35年', start: '2023-06-20 00:01', end: '2025-06-30 23:59', allDay: false, url: 'https://www.uchicoco.jp/information2/30625/', target: 'self', className: 'uchicoco_r' }, { title: '八千代市高津『築47年』リノベーションモデルハウス「紡ぎの家」', start: '2025-04-30 00:01', end: '2025-04-30 23:59', allDay: false, url: 'https://www.uchicoco.jp/news-topics/39051/', target: 'self', className: 'uchicoco_r' }, ] }); });