My fullcalender is not working on internet explorer and mozilla. It works on chrome perfectly well but not on IE and Moz. It will display the callender, but would not display the events, and this is the jquery file that gets the events and displays them.
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
events: "assets/php/json-events.php",
editable: true,
eventDrop: function(event, delta) {
alert(event.title + ' was moved ' + delta + ' days\n' +
'(should probably update your database)');
},
loading: function(bool) {
if (bool){ $('#loading').show();}
else{$('#loading').hide();}
}
});
Please help, i need answers asap, thanks.