I am trying to populate the FullCalendar with custom events but every time I attempt to use Ajax or Json events
, I encounter this error:
Uncaught TypeError: undefined is not a function near (...$.ajax...)
Below is the javascript code for my FullCalendar:
$(function() {
// Calendar initialization
$('#calendar').fullCalendar({
themeSystem: 'bootstrap4',
header:{
left: 'month,agendaWeek,agendaDay',
center: 'title',
right: 'prev,today,next'
},
defaultView: 'month',
weekNumbers: true,
weekNumberTitle: "Week",
slotLabelFormat: 'H:mm',
nowIndicator: true,
navLinks: true,
events: getEvents
});
});