Fullcalendar.js get events of the day on click
问题 Fullcalendar.js get events of the day on click Is it possible to get all events of the day I click on in the monthview and print them in any div element with Fullcalendar.js ? Here's my JSFiddle: http://jsfiddle.net/alexchizhov/syf9ycbc/4/ 回答1: You can always iterate over all events and find out which event is on selected day. Here is my function to do that: function getEvents(date){ all_events.forEach(function(entry) { if (entry['start'] == date.format()){ alert(entry['title']);} else if