-
Notifications
You must be signed in to change notification settings - Fork 108
Home
Kevin Thornbloom edited this page Feb 17, 2016
·
2 revisions
Start with adding the CSS to your header (or include via whatever preprocessor magic you use these days):
<link rel="stylesheet" href="css/monthly.css">
Next, add a div with a class of "monthly" and give it a unique id. The ID helps separate multiple instances of the plugin.
<div class="monthly" id="mycalendar"></div>
Finally, add the javascript after jQuery and initialize it using the unique ID.
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/monthly.js"></script>
<script type="text/javascript">
$(window).load( function() {
$('#mycalendar').monthly();
});
</script>