Basic Usage =========== The first step in embedding a calendar on a web page is to have the right JavaScript and CSS files. Make sure you are including the FullCalendar stylesheet, as well as the FullCalendar and [jQuery](http://jquery.com/) JS files, in the `
` of your page: If you plan on doing dragging or resizing, you need some additional [jQuery UI](http://jqueryui.com/download) files (more information [here](event_ui/Requirements)). Once you have your dependencies, you need to write the JavaScript code that initializes the calendar. This code must be executed *after* the page has initialized. The best way to do this is with jQuery's `$(document).ready` like so: $(document).ready(function() { // page is now ready, initialize the calendar... $('#calendar').fullCalendar({ // put your options and callbacks here }) }); The above code should be in a `