Regarding this and this Question, Id like to know, if this can be redone with a working solution on fiddle? Seems like theres no such things as 'isMultipleDay' or 'multipleDayEvents'.
$('#calendar').fullCalendar ({
defaultView:'month',
defaultDate: '2014-11-20',
timezone: 'local',
events: [ {
title: "Birmingham Comic Con",
start: new Date('2014-11-20T09:00'),
end: new Date('2014-11-22T19:00'),
id: 1,
isMultipleDay: true,
multipleDayEvents: [{
start: new Date('2014-11-12T09:00'),
end: new Date('2014-11-15T19:00'),
description: 'Day 1'
},
{
start: new Date('2014-11-16T09:00'),
end: new Date('2014-11-18T19:00'),
description: 'Day 2'
},
{
start: new Date('2014-11-02T09:00'),
end: new Date('2014-11-05T19:00'),
description: 'Day 3'
}
]
}]
})
function AddEvent(){
$('#calendar').fullCalendar('renderEvent', ourEvent, true);
}