FullCalender with JQuery and Google Calender
        Posted  
        
            by Marv
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Marv
        
        
        
        Published on 2010-05-27T09:16:25Z
        Indexed on 
            2010/05/27
            9:21 UTC
        
        
        Read the original article
        Hit count: 664
        
Hi,
i got a problem with fullcalender and google calender. My fullcalender does not show the google entrys. Need help plz :)
<script type="text/javascript">// <![CDATA[
$(document).ready(function() {
var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear();
$('#calendar').fullCalendar({
           header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
}, }); $('#calendar').fullCalendar({ events: $.fullCalendar.gcalFeed( "http://www.google.com/calendar/feeds/marvin.spies%40gmx.de/public/basic/", { // put your options here className: 'gcal-event', editable: true, currentTimezone: 'Europe/Berlin' } ) });
}); // ]]>
© Stack Overflow or respective owner