Skip to content

Instantly share code, notes, and snippets.

@manutheblacker
Created May 20, 2020 05:54
Show Gist options
  • Save manutheblacker/53200a005a2dcf562b910e6e8b3a067d to your computer and use it in GitHub Desktop.
Save manutheblacker/53200a005a2dcf562b910e6e8b3a067d to your computer and use it in GitHub Desktop.
GRpPvbW
<div id='calendar'></div>
$(function() {
$('#calendar').fullCalendar({
defaultView: 'month',
events: 'https://fullcalendar.io/demo-events.json'
});
});
<script src="https://unpkg.com/moment@2.25.3/min/moment.min.js"></script>
<script src="https://unpkg.com/jquery@3.5.1/dist/jquery.min.js"></script>
<script src="https://unpkg.com/fullcalendar@3.10.2/dist/fullcalendar.min.js"></script>
html, body {
margin: 0;
padding: 0;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
font-size: 14px;
}
#calendar {
max-width: 900px;
margin: 40px auto;
}
<link href="https://unpkg.com/fullcalendar@3.10.2/dist/fullcalendar.min.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment