user2096135
user2096135

Reputation: 1

Display event details from google calendar on mouseover

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

Answers (1)

REMESQ
REMESQ

Reputation: 1200

Look at the answer and comments to the answer HERE. The last comment to the answer has a JsFiddle that shows details (you'll have to style / configure yourself).

If you would consider a popup, then look HERE.

Upvotes: 1

Related Questions