Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Last active October 1, 2015 13:20
Show Gist options
  • Save barnes7td/1ca706f592abad7acb82 to your computer and use it in GitHub Desktop.
Save barnes7td/1ca706f592abad7acb82 to your computer and use it in GitHub Desktop.
fullcalendar
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
},
defaultDate: '2015-02-12',
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2015-02-01'
},
{
title: 'Long Event',
start: '2015-02-07',
end: '2015-02-10'
}
]
});
});f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment