I can't the see issue with my attempt to use fullCalendar, I've read all the previous questions and answers, they usually have two jquery's or an error in the script sequence. Can anyone advise what I have done wrong please? (I've used older versions of libraries whilst checking).
<link href="~/Scripts/plugins/fullcalendar/fullcalendar.css" rel="stylesheet" />
<div id='calendar'></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.min.js"></script>
<script src="~/Scripts/plugins/fullcalendar/fullcalendar.js"></script>
<script>
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
// put your options and callbacks here
})
});
</script>