Is there a way to prevent overlapping events in jQuery FullCalendar?
just try this, works fine for me.... https://fullcalendar.io/docs/event_ui/eventOverlap/
eventOverlap: function(stillEvent, movingEvent) { return stillEvent.allDay && movingEvent.allDay; }