I am creating several fullcalendar on one page, and I would like to write a single event processing callback so that it can read the parameters from the fullcalendar instance from which it is called from / in, such as minTime and maxTime, and not of course how to do it.
you can do something like this:
var minTime = $('#calendar').fullCalendar('option', 'minTime');
The option method is not actually documented, but it should work
option