Reputation: 1
I need to display event details on mouseover in fullcalendar instead of clicking on it. Here's my code so far:
$(document).ready(function() { // page is now ready, initialize the calendar... $('#calendar').fullCalendar({ eventSources: [ 'https://www.google.com/calendar/feeds/8msdika8k0vtf797v81rq4ot4%40group.calendar.google.com/public/basic' ], eventClick: [function(event) { if (event.url) { return false; } } ], eventMouseover :function(event, jsEvent, view) { }, }) });What do i add inside the eventmouseover function so that it displays event details from my google calendar? Please help! Thanks!
Upvotes: 0
Views: 2073