FullCalender with JQuery and Google Calender
- by Marv
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'
}
)
});
});
// ]]