I\'m using fullcalendar, how can I fetch more events from same server side, multiple urls? The initial one works, I just want to add additional events when they arrive(ajax)
You could use Ajax to get the data and then add dynamically the new source
$.ajax({ url: "test.html", success: function(data){ var source = { events: [ { title: data.getTitle(), start: new Date(year, month, day) } ]}; $('#calendar').fullCalendar( 'addEventSource', source ); } });