How to read parameters from a fullcalendar object

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.

+4
source share
1 answer

you can do something like this:

var minTime = $('#calendar').fullCalendar('option', 'minTime'); 

The option method is not actually documented, but it should work

+9
source

All Articles