The background event is displayed as a DIV with the class name fc-bgevent.
My code for detecting a background click event:
element.fullCalendar({ ... dayClick: function(date, jsEvent, view) { if (jsEvent.target.classList.contains('fc-bgevent')) { alert('Click Background Event Area'); } }, ... });
source share