Sorry but I can't seem to get my special-kid helmet off today. I'm attempting to use Full Calendar http://cl.ly/1UCt ... I've verified that there are no relevant javascript errors, all of the scripts are being called properly, I have a #calendar div, yet I'm getting no results or output on the page.
Using this within WordPress, here is my relevant header:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url')?>/fullcalendar-1.4.6/fullcalendar.css" />
<script type="text/javascript" src="<?php bloginfo('template_url')?>/fullcalendar-1.4.6/jquery/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url')?>/fullcalendar-1.4.6/fullcalendar.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
// put your options and callbacks here
})
});
</script>
And you can view the page itself (with non-existent calendar) here: http://cl.ly/1UKk
Any suggestions for debugging / troubleshooting? I have no idea what's wrong here...
EDIT: As pointed out by Charles below, it seems like the function fullCalendar is undefined. I'm just following the basic callback parameters for the script, does anyone have an idea why it would be undefined? I haven't changed anything from the default/basic callback.