Hello,
I just download FullCalendar today and I've been trying to combine the JOSN calendar with the gcal. In addition to my JSON data i would like to show national holidays too, Can someone please tell me if this is possible or not.
I've tried this and it's not working. thank you!
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
},
editable: true,
events: "json-events.php",
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic'),
loading: function(bool) {
if (bool) $('#loading').show();
else $('#loading').hide();
}
});
});