Feature-rich And Draggable Event Calendar Plugin - FullCalendar

File Size: 608 KB
Views Total: 156727
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Feature-rich And Draggable Event Calendar Plugin - FullCalendar

FullCalendar is a lightweight yet powerful and developer-friendly JavaScript library to create flexible, draggable event calendars on the modern web app. 

By using AJAX, FullCalendar can fetch events on-the-fly for each month and is easily configured to use your own feed format (an extension is provided for Google Calendar).

It is visually customizable and exposes hooks for user-triggered events (like clicking or dragging an event).

Note that the FullCalendar now works as a Vanilla (ES6) JavaScript since v4, which removes jQuery and moment as dependencies. View the Upgrade Guide for more information.

You can still download and use the FullCalendar V3 in your jQuery powered projects.

More Features:

  • Multiple languages.
  • Lots of themes to fit your needs.
  • Supports custom timezone.
  • Custom toolbar.
  • Supports Month, TimeGri, List, DayGrid, Timeline, and Custom Views.
  • Custom header & footer controls.
  • Uses virtual DOM for faster rendering (V5).
  • Compatible with Bootstrap 5

Seel also:

3rd plugins:

Table Of Contents:

Basic Usage (v6):

1. Install & Download:

# Yarn
$ yarn add @fullcalendar

# NPM
$ npm install @fullcalendar --save

2. Install & Download plugins as per your needs:

  • @fullcalendar/interaction: Detect dateClick actions, selectable actions, and event drag-n-drop & resizing.
  • @fullcalendar/daygrid: Month and DayGrid views.
  • @fullcalendar/timegrid: TimeGrid views.
  • @fullcalendar/list: Lists views.
  • @fullcalendar/scrollgrid: Advanced scrolling.
  • @fullcalendar/bootstrap5: Bootstrap 5 theme.
  • @fullcalendar/bootstrap4: Bootstrap 4 theme.
  • @fullcalendar/google-calendar: Allows the plugin to load events from a public Google Calendar feed.
  • @fullcalendar/icalendar: Load events from an iCalendar feed.
  • @fullcalendar/rrule: For leveraging the RRule library for event recurrence.
  • @fullcalendar/luxon/@fullcalendar/luxon2: Offers a named-timezone implementation, a formatting string implementation, and utilities for converting to Luxon DateTimes.
  • @fullcalendar/moment: Offers a formatting string implementation and utilities fo convert to Moment objects.
  • @fullcalendar/moment-timezone: Offers a named timezone implementation.
  • @fullcalendar/react: React component.
  • @fullcalendar/vue3/@fullcalendar/vue: Vue.js component.
  • @fullcalendar/angular: Angular component.
# Yarn
$ yarn add @fullcalendar/core
$ yarn add @fullcalendar/pluginName

# NPM
$ npm install @fullcalendar/core --save
$ npm install @fullcalendar/pluginName --save

3. Import the core module and plugins as follows:

import { Calendar } from '@fullcalendar/core';
import pluginNamePlugin from '@fullcalendar/pluginName';

4. Or directly load the JavaScript in the document.

<script src='https://cdn.jsdelivr.net/npm/[email protected]/index.global.min.js'></script>

5. Create a container element to hold the evnet calendar.

<div id="calendar"></div>

6. Render a basic calendar (with no events) on the page.

document.addEventListener('DOMContentLoaded', function () {
  var calendarEl = document.getElementById('calendar');

  var calendar = new FullCalendar.Calendar(calendarEl, {

      // plugins to load
      plugins: ['dayGrid', 'timeGrid'], // plugins to load

      // header controls
      header: {
        left: 'dayGridMonth,timeGridWeek,timeGridDay custom1',
        center: 'title',
        right: 'custom2 prevYear,prev,next,nextYear' 
      },

      // footer controls
      footer: {
        left: 'custom1,custom2',
        center: '',
        right: 'prev,next' 
      },
    
    // custom toolbar buttons
    customButtons: {
      custom1: {
        text: 'custom 1',
        click: function () {
          alert('clicked custom button 1!');
        } 
      },

      custom2: {
        text: 'custom 2',
        click: function () {
          alert('clicked custom button 2!');
        }
      } 
    } 
});

  // render the calendar
  calendar.render();
});

7. Create a calender with events defined in an array of event objects as follows:

var calendar = new FullCalendar.Calendar(calendarEl, {

    events: [
      {
        title: 'All Day Event',
        start: '2020-02-01'
      },
      {
        title: 'Long Event',
        start: '2020-02-07',
        end: '2020-02-10'
      },
      {
        groupId: '999',
        title: 'Repeating Event',
        start: '2020-02-09T16:00:00'
      }

});

8. Global configurations.  Check out the Full document for more information.

eventDisplay: 'auto',
defaultRangeSeparator: ' - ',
titleRangeSeparator: ' \u2013 ',
defaultTimedEventDuration: '01:00:00',
defaultAllDayEventDuration: { day: 1 },
forceEventDuration: false,
nextDayThreshold: '00:00:00',
dayHeaders: true,
initialView: '',
aspectRatio: 1.35,
headerToolbar: {
  start: 'title',
  center: '',
  end: 'today prev,next'
},
weekends: true,
weekNumbers: false,
weekNumberCalculation: 'local',
editable: false,
nowIndicator: false,
scrollTime: '06:00:00',
slotMinTime: '00:00:00',
slotMaxTime: '24:00:00',
showNonCurrentDates: true,
lazyFetching: true,
startParam: 'start',
endParam: 'end',
timeZoneParam: 'timeZone',
timeZone: 'local',
locales: [],
locale: '',
themeSystem: 'standard',
dragRevertDuration: 500,
dragScroll: true,
allDayMaintainDuration: false,
unselectAuto: true,
dropAccept: '*',
eventOrder: 'start,-duration,allDay,title',
dayPopoverFormat: { month: 'long', day: 'numeric', year: 'numeric' },
handleWindowResize: true,
windowResizeDelay: 100,
longPressDelay: 1000,
eventDragMinDistance: 5,
expandRows: false,
navLinks: false,
selectable: false

Basic Usage (v3):

1. Include the necessary jQuery and moment.js libraries in the document.

<script src="/path/to/jquery.min.js"></script>
<script src="/path/to/moment.min.js"></script>

2. Include the FullCalendar plugin's files.

<link rel="stylesheet" href="fullcalendar.css">
<script src="fullcalendar/fullcalendar.js"></script>

3. You can also import the FullCalendar as a module.

npm install jquery moment fullcalendar
import $ from 'jquery';
import 'fullcalendar';

4. Call the function on the element in which you want to place the calendar and add your own events as follows:

<div id="container"></div>
$('#container').fullCalendar({
  header: {
    left: 'prev,next today',
    center: 'title',
    right: 'month,agendaWeek,agendaDay,listWeek'
  },
  defaultDate: '2019-01-12',
  navLinks: true, // can click day/week names to navigate views
  editable: true,
  eventLimit: true, // allow "more" link when too many events
  events: [
    {
      title: 'All Day Event',
      start: '2019-01-01',
    },
    {
      title: 'Long Event',
      start: '2019-01-07',
      end: '2019-01-10'
    },
    {
      id: 999,
      title: 'Repeating Event',
      start: '2019-01-09T16:00:00'
    },
    {
      id: 999,
      title: 'Repeating Event',
      start: '2019-01-16T16:00:00'
    },
    {
      title: 'Conference',
      start: '2019-01-11',
      end: '2019-01-13'
    },
    {
      title: 'Meeting',
      start: '2019-01-12T10:30:00',
      end: '2019-01-12T12:30:00'
    },
    {
      title: 'Lunch',
      start: '2019-01-12T12:00:00'
    },
    {
      title: 'Meeting',
      start: '2019-01-12T14:30:00'
    },
    {
      title: 'Happy Hour',
      start: '2019-01-12T17:30:00'
    },
    {
      title: 'Dinner',
      start: '2019-01-12T20:00:00'
    },
    {
      title: 'Birthday Party',
      start: '2019-01-13T07:00:00'
    },
    {
      title: 'Click for Google',
      url: 'http://google.com/',
      start: '2019-01-28'
    }
  ]
});

5. Options and defaults. Check out the Full document for more information.

$('#container').fullCalendar({
  titleRangeSeparator: ' \u2013 ',
  monthYearFormat: 'MMMM YYYY',
  defaultTimedEventDuration: '02:00:00',
  defaultAllDayEventDuration: { days: 1 },
  forceEventDuration: false,
  nextDayThreshold: '09:00:00',
  columnHeader: true,
  defaultView: 'month',
  aspectRatio: 1.35,
  header: {
    left: 'title',
    center: '',
    right: 'today prev,next'
  },
  weekends: true,
  weekNumbers: false,
  weekNumberTitle: 'W',
  weekNumberCalculation: 'local',
  scrollTime: '06:00:00',
  minTime: '00:00:00',
  maxTime: '24:00:00',
  showNonCurrentDates: true,
  lazyFetching: true,
  startParam: 'start',
  endParam: 'end',
  timezoneParam: 'timezone',
  timezone: false,
  locale: null,
  isRTL: false,
  buttonText: {
    prev: 'prev',
    next: 'next',
    prevYear: 'prev year',
    nextYear: 'next year',
    year: 'year',
    today: 'today',
    month: 'month',
    week: 'week',
    day: 'day'
  },
  allDayText: 'all-day',
  agendaEventMinHeight: 0,
  theme: false,
  dragOpacity: .75,
  dragRevertDuration: 500,
  dragScroll: true,
  unselectAuto: true,
  dropAccept: '*',
  eventOrder: 'title',
  eventLimit: false,
  eventLimitText: 'more',
  eventLimitClick: 'popover',
  dayPopoverFormat: 'LL',
  handleWindowResize: true,
  windowResizeDelay: 100,
  longPressDelay: 1000
});

Changelogs:

v6.1.15 (2024-07-13)

  • Bugfixes

v6.1.14 (2024-06-06)

  • React 19 support
  • Angular 18 support

v6.1.13 (2024-05-23)

  • Bugfixes

v6.1.12 (2024-05-22)

  • Bugfixes

v6.1.11 (2024-02-21)

  • Bugfixes

v6.1.10 (2023-11-29)

  • feature: Angular version 17 support
  • fix: Vue 3 background event with custom rendering, not receiving el in eventDidMount
  • fix: font-icon elements should have role="img"
  • locale: fix bg 
  • locale: fix ca
  • locale: fix nl

v6.1.9 (2023-09-22)

  • bugfixes

v6.1.8 (2023-05-25)

  • bugfixes

v6.1.7 (2023-05-09)

  • bugfixes

v6.1.6 (2023-04-24)

  • bugfixes

v6.1.5 (2023-03-22)

  • bugfixes

v6.1.4 (2023-02-08)

  • bugfixes

v6.1.1 (2023-01-31)

  • bugfixes

v6.1.0 (2023-01-30)

  • added multimonth view
  • improved daygrid behavior when multiple weeks/months
  • in daygrid/multimonth, +more link has hover effect with grey background color
  • @fullcalendar/web-component has shadow option
  • bugfixes

v6.0.3 (2023-01-12)

  • Bugfixes

v6.0.2 (2022-12-28)

  • Bugfixes

v6.0.1 (2022-12-21)

  • Bugfixes

v6.0.0 (2022-12-14)

  • Major update

v5.11.3 (2022-08-24)

  • fixed: timeline view (without resources) problem with expanding height
  • fixed: locales not working in IE11

v5.11.2 (2022-07-28)

  • internal changes for compatibility with React 18

v5.11.0 (2022-02-09)

  • internal changes for compatibility with React 18

v5.10.2 (2022-02-09)

  • bootstrap 5 support, via @fullcalendar/bootstrap5
  • luxon 2 support, via @fullcalendar/luxon2
  • angular 13 support

v3.10.5 (2021-11-03)

  • fix overly strict engines entry in package.json requiring Node 11

v3.10.4 (2021-10-26)

  • fix continued dist problems with Bower

v5.10.0 (2021-10-14)

  • feature: WAI-ARIA improvements
  • feature: date formatting option week now accepts 'long' if locale defines weekTextLong
  • bugfix: timeline-view events hidden by eventMaxStack sometimes appear over other events
  • bugfix: daygrid event rendering with dayMaxEventRows and custom eventOrder can cause infinite loop
  • bugfix: content-injected html/domNodes as view-specific options don't clear when switching views
  • bugfix: more compliant CSS with Sass processors
  • locale: added si-lk

v5.9.0 (2021-07-29)

  • Bugs fixed.
  • More locals added.

v5.8.0 (2021-06-16)

  • Bugs fixed.

v5.7.2 (2021-06-05)

  • fixed table-related Chrome 91 bug causing timegrid view with allDaySlot:false and certain custom CSS to appear broken

v4.4.3 (2021-06-04)

  • fixed table-related bug with Chrome 91 and timeline slot widths

v5.7.0 (2021-05-12)

  • feature: +more popover for timegrid
  • feature: +more popover for timeline
  • feature: eventShortHeight for timegrid
  • feature: eventMinHeight for timegrid
  • feature: eventMinWidth for timeline
  • feature: eventOrderStrict flag to ensure strict event ordering
  • feature: scrollTimeReset flag to not reset scroll state across dates
  • fix: events can be completely hidden behind others with custom eventOrder
  • fix: less homogeneous event widths in timegrid
  • fix: +more shows on days with less events than dayMaxEvents
  • fix: +more popover can be scrolled down with page scroll
  • fix: +more popover falls behind the sticky dates header
  • fix: all-day events are displayed in front of the sticky header
  • fix: respect duration in eventOrder as highest precedence
  • fix: refetching events should keep event popover open
  • fix: accidental +more popover close with shadow dom
  • dev: when attempting npm install in the dev repo, will throw an error saying to use yarn
  • dev: ensure building on windows works
  • obscure breaking changes:
  • renamed fc-timegrid-event-condensed className to fc-timegrid-event-short
  • removed config.timeGridEventCondensedHeight

v5.6.0 (2021-03-29)

  • feature: icalendar events receive URL
  • feature: icalendar events receive location, organizer, description in extendedProps
  • fix: resizing resource column larger does not always update column widths
  • fix: print view cut off for wide liquid-width calendar
  • fix: event start time is limited by what is visible by slotMinTime
  • fix: Event::setProp can't change the id
  • fix: icalendar event source does not update on refreshEvents
  • fix: business hours per resource do not fill row height with expandRows
  • fix: icalendar recurring events ignoring count rule
  • fix: icalendar recurring timed-events with wrong times
  • fix: removed accidental ical.js dependency in common's package.json
  • fix: for gcal events, restore extendedProperties
  • fix: for gcal events, make attachments available
  • fix: can't parse rrule strings with newlines after UNTIL statements
  • locale: fixed typos in Tamil
  • locale: added Bengali
  • breaking-change: for icalendar recurring event that don't specify dtend/duration,
  • the resulting Event object's end is now determined by forceEventDuration, defaultTimedEventDuration,
  • and defaultAllDayEventDuration, whereas previously it was sometimes null.

v5.5.1 (2021-01-17)

  • view styles lost after changing to view with allDaySlot:false, view-specific dayHeaders
  • type error when slotDuration is in whole days
  • rrule byweekday property not working
  • support for recurring events in iCalendar feed
  • add Indian/Tamil language support
  • error in @fullcalendar/scrollgrid with NextJS (SSR)
  • removed unnecessary use of Promise in icalendar package. restores IE11 compatibility

v5.5.0 (2020-12-20)

  • icalendar support 
  • support exrule and exdate for rrule plugin
  • support for Angular 11
  • fix: recurring events missing with dtstart in UTC and timeZone not UTC
  • fix: events can have a gap between and take more rows than dayMaxEventRows when using eventOrder
  • fix: events dragged from the More popup to another resource drop on the wrong resource
  • fix: week number rendered twice in ResourceTimeGridView
  • fix: nowIndicator not positioned correctly for resourceTimelineYear view with slot duration 1 month
  • fix: oldResource and newResource missing from EventDropArg typescript definition 
  • fix: loading callback fires before resources are done loading and again after
  • fix: locales are not compatible with IE 11
  • fix: IE11 freezes trying to display dayGrid with dayMinWidth
  • fix: calling revert func within eventChange would erase affected event
  • locale: add Armenian
  • locale: add Austrian
  • locale: add Welsh
  • locale: add Esperanto
  • locale: improve Dutch
  • breaking-change: EventDropArg typescript type moved from interaction package to core

v5.4.0 (2020-11-12)

  • new fixedMirrorParent settings for drag-n-drop
  • rrule exclusion doesn't work while adding the 'Z' char for RRule datetimes
  • fix JS error when using dayMaxEventRows on small screens
  • export types for ResourceFunc and ResourceInput
  • more descriptive license key warning
  • better compatibility with Webpack 5, deeming resolve.fullySpecified unnecessary
  • dist files now include a CJS file. ESM is still used by default in most environments

v5.3.2 (2020-09-07)

  • fix: more-link sometimes incorrectly positioned behind events

v5.3.1 (2020-09-04)

  • Lots of bugs fixed

v5.3.0 (2020-08-13)

  • Lots of bugs fixed

v5.2.0 (2020-07-31)

  • provide browser-global JS file for all packages
  • indicate which row (or format) is being rendered in slotLabelContent
  • nepali locale
  • Bugfixes

v5.1.0 (2020-06-29)

  • Bugfixed

v5.0.0 (2020-06-22)

v4.4.2 (2020-05-29)

  • Bump all packages so that all latest deps are fetched

v4.4.1 (2020-05-28)

  • fix: loading callback does not fire for resources
  • fix: calling setOption when there is a date selection causes a typeerror

v3.10.2 (2020-05-19)

  • Legacy v3-only fix. Compatibility with jQuery 3.5.0

v4.4.0 (2020-02-22)

  • Update to the latest version

v3.10.0 (2019-02-07)

  • doc update

v3.4.0 (2017-04-28)

  • composer.js for Composer (PHP package manager) 
  • fix toISOString for locales with non-trivial postformatting
  • fix for nested inverse-background events 
  • Estonian locale
  • fixed Latvian localization
  • internal refactor of async systems

v3.2.0 (2017-02-15)

  • New feature: selectMinDistance, threshold before a mouse selection begins
  • Fixed: iOS 10, unwanted scrolling while dragging events/selection
  • Fixed: dayClick triggered when swiping on touch devices 
  • Fixed: dayClick not functioning on Firefix mobile 
  • Fixed: title computed incorrectly for views with no weekends
  • Fixed: unwanted scrollbars in month-view when non-integer width 
  • Fixed: incorrect date formatting for locales with non-standlone month/day names
  • Fixed: date formatting, incorrect omission of trailing period for certain locales 
  • Fixed: formatRange should collapse same week numbers 
  • Fixed: Taiwanese locale updated
  • Fixed: Finnish noEventsMessage updated
  • Fixed: Croatian (hr) buttonText is blank 
  • Fixed: JSON feed PHP example, date range math bug

v3.1.0 (2016-12-05)

  • experimental support for implicitly batched ("debounced") event rendering: eventRenderWait (off by default)
  • new footer option, similar to header toolbar
  • event rendering batch methods: renderEvents and updateEvents
  • more granular touch settings: eventLongPressDelay and selectLongPressDelay
  • eventDestroy not called when removing the popover
  • print stylesheet and gcal extension now offered as minified 
  • fc-today in agenda header cells
  • height-related options in tandem with other options
  • Kazakh locale
  • Afrikaans locale
  • internal refactor related to timing of rendering and firing handlers. calls to rerender the current date-range and events from within handlers might not execute immediately. instead, will execute after handler finishes.

v3.0.1 (2016-10-02)

  • list view rendering event times incorrectly
  • list view rendering events/days out of order
  • events with no title rendering as "undefined"
  • add .fc scope to table print styles
  • "display no events" text fix for German

v3.0.0 (2016-09-05)

  • Bugfixes
  • New Features: List View
  • New Features: Clickable day/week numbers for easier navigation
  • New Features: Programmatically allow/disallow user interactions\
  • New Features: Option to display week numbers in cells
  • New Features: When week calc is ISO, default first day-of-week to Monday
  • New Features: Macedonian locale
  • IE8 support dropped
  • jQuery: minimum support raised to v2.0.0
  • MomentJS: minimum support raised to v2.9.0
  • lang option renamed to locale
  • View-Option-Hashes no longer supported (deprecated in 2.2.4)
  • removed weekMode setting
  • removed axisFormat setting
  • DOM structure of month/basic-view day cell numbers changed

v2.9.0 (2016-07-11)

  • Setters for (almost) all options
  • Travis CI improvements

v2.8.0 (2016-06-20)

  • getEventSources method
  • getEventSourceById method
  • refetchEventSources method
  • removeEventSources method 
  • prevent flicker when refetchEvents is called 
  • fix for removing event sources that share same URL
  • jQuery 3 support 
  • Travis CI integration 
  • EditorConfig for promoting consistent code style
  • use en dash when formatting ranges 
  • height:auto always shows scrollbars in month view on FF
  • new languages

v2.7.0 (2016-05-01)

  • touch device support: - smoother scrolling - interactions initiated via "long press": - event drag-n-drop - event resize - time-range selecting - longPressDelay

v2.6.1 (2016-02-15)

  • make nowIndicator positioning refresh on window resize

v2.5.0 (2015-11-30)

  • internal timezone refactor.
  • internal "grid" system refactor. improved API for plugins.

v2.4.0 (2015-08-17)

  • add new buttons to the header via customButtons 
  • control stacking order of events via eventOrder
  • control frequency of slot text via slotLabelInterval 
  • displayEventTime 
  • on and off methods
  • renamed axisFormat to slotLabelFormat

v2.3.2 (2015-06-15)

  • minor code adjustment in preparation for plugins

v2.3.1 (2015-03-09)

  • Fix week view column title for en-gb

v2.3.0 (2015-02-22)

  • internal refactoring in preparation for other views
  • businessHours now renders on whole-days in addition to timed areas
  • events in "more" popover not sorted by time
  • avoid using moment's deprecated zone method
  • destroying the calendar sometimes causes all window resize handlers to be unbound
  • multiple calendars on one page, can't accept external elements after navigating
  • accept external events from jqui sortable 
  • external jqui drop processed before reverting 
  • IE8 fix: month view renders incorrectly
  • IE8 fix: eventLimit:true wouldn't activate "more" link
  • IE8 fix: dragging an event with an href
  • IE8 fix: invisible element while dragging agenda view events
  • IE8 fix: erratic external element dragging

v2.2.7 (2015-02-10)

  • view.title wasn't defined in viewRender callback 
  • FullCalendar versions >= 2.2.5 brokenness with Moment versions <= 2.8.3 
  • Support Bokmal Norwegian language specifically

v2.2.6 (2015-01-12)

  • Compatibility with Moment v2.9. Was breaking GCal plugin
  • View object's title property mistakenly omitted
  • Single-day views with hiddens days could cause prev/next misbehavior
  • Don't let the current date ever be a hidden day
  • Hebrew locale

v2.2.5 (2014-12-30)

  • buttonText specified for custom views via the views option

v2.2.4 (2014-12-30)

  • Arbitrary durations for basic/agenda views with the views option
  • Specify view-specific options using the views option.
  • Deprecate view-option-hashes
  • Formalize and expose View API
  • updateEvent method, more intuitive behavior.

v2.2.3 (2014-11-26)

  • removeEventSource with Google Calendar object source, would not remove 
  • Events with invalid end dates are still accepted and rendered
  • Bug when rendering business hours and navigating away from original view
  • Links to Google Calendar events will use current timezone
  • Google Calendar plugin works with timezone names that have spaces
  • Google Calendar plugin accepts person email addresses as calendar IDs
  • Internally use numeric sort instead of alphanumeric sort

v2.2.1 (2014-11-20)

  • Fixes to Google Calendar API V3 code

v2.2.1 (2014-11-19)

  • Migrate Google Calendar plugin to use V3 of the API

v2.2.0 (2014-11-15)

  • Background event rendering (144, 1286)
  • Controlling where events can be dragged/resized and selections can go
  • Improvements to dragging and dropping external events
  • Performance boost for moment creation

v2.1.1 (2014-08-30)

  • removeEventSource not working with array 
  • mouseout not triggered after mouseover+updateEvent
  • agenda event's render with no href, not clickable

v2.1.0 (2014-08-27)

  • Large code refactor with better OOP, better code reuse, and more comments. No more reliance on jQuery UI for event dragging, resizing, or anything else.

v2.0.3 (2014-08-16)

  • moment-2.8.1 compatibility
  • relative path in bower.json
  • upgraded jquery-ui and misc dev dependencies

v2.0.2 (2014-06-25)

  • bug with persisting addEventSource calls 
  • bug with persisting removeEvents calls with an array source
  • bug with removeEvents method when called with 0 removes all events 

v2.0.1 (2014-06-16)

  • wrongfully triggering a windowResize when resizing an agenda view event
  • this values in event drag-n-drop/resize handlers consistently the DOM node
  • displayEventEnd - v2 workaround to force display of an end time 
  • don't modify passed-in eventSource items
  • destroy method now removes fc-ltr class
  • weeks of last/next month still visible when weekends are hidden 
  • fixed memory leak when destroying calendar with selectable/droppable
  • delta parameters reintroduced in eventDrop and eventResize handlers 
  • Icelandic language 
  • Bahasa Indonesia language 

v2.0.0 (2014-06-02)

  • Major update.
  • APIs changed.
  • No More IE7 Support.

v1.6.4 (2013-09-01)

  • better algorithm for positioning timed agenda events (issue 1115)
  • `slotEventOverlap` option to tweak timed agenda event overlapping (issue 218)
  • selection bug when slot height is customized (issue 1035)
  • supply view argument in `loading` callback (issue 1018)
  • fixed week number not displaying in agenda views (issue 1951)
  • fixed fullCalendar not initializing with no options (issue 1356)
  • NPM's package.json, no more warnings or errors (issue 1762)
  • building the bower component should output bower.json instead of component.json (PR 125)
  • use bower internally for fetching new versions of jQuery and jQuery UI

v1.6.3 (2013-08-11)

  • viewRender callback (PR 15)
  • viewDestroy callback (PR 15)
  • eventDestroy callback (PR 111)
  • handleWindowResize option (PR 54)
  • eventStartEditable/startEditable options (PR 49)
  • eventDurationEditable/durationEditable options (PR 49)
  • specify function for $.ajax `data` parameter for JSON event sources (PR 59)
  • fixed bug with agenda event dropping in wrong column (PR 55)
  • easier event element z-index customization (PR 58)
  • classNames on past/future days (PR 88)
  • allow null/undefined event titles (PR 84)
  • small optimize for agenda event rendering (PR 56)
  • deprecated:
  • viewDisplay
  • disableDragging
  • disableResizing
  • bundled with latest jQuery (1.10.2) and jQuery UI (1.10.3)

This awesome jQuery plugin is developed by fullcalendar. For more Advanced Usages, please check the demo page or visit the official website.