Setting up a website to use fullcalendar

cerbero

New Member
I am trying to set up a page with a calendar, my problem is that i am not sure how to organizr the inclussions so that i dont get errors, here is my \[code\]<head>\[/code\]\[code\]<head runat="server"> <title></title> <link href="http://stackoverflow.com/questions/12764887/~/Styles/Site.css" rel="stylesheet" type="text/css" /> <link href="http://stackoverflow.com/questions/12764887/fullcalendar/fullcalendar.css" rel="stylesheet" type="text/css" /> <script src="http://stackoverflow.com/questions/12764887/jquery/jquery-1.8.1.min.js" type="text/javascript"></script> <script src="http://stackoverflow.com/questions/12764887/fullcalendar/fullcalendar.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { // page is now ready, initialize the calendar... $('#calendar').fullCalendar({ // put your options and callbacks here }) }); </script> <asp:ContentPlaceHolder ID="HeadContent" runat="server"> </asp:ContentPlaceHolder></head>\[/code\]When my page starts, i get an error that says \[code\]Microsoft JScript runtime error: '$' is undefined\[/code\] and it highlights the whole jquery in yellow (its a popup with the error). What can i do to avoid the error?, i am registering jquery as you can see, so not sure why that error comes up.Thank you I grately appreciate your help.
 
Back
Top