|
events (as a json feed)A URL of a JSON feed that the calendar will fetch Event Objects from. FullCalendar will visit the URL whenever it needs new event data. This happens when the user clicks prev/next or changes views. FullCalendar will determine the date-range it needs events for and will pass that information along in GET parameters. The GET parameter names will be determined by the startParam and endParam options.
( The value of the parameters will always be UNIX timestamps (seconds since 1970). Consider the following script:
Here is a URL that FullCalendar might visit:
The If you need to access a feed that is in a different domain, you can use JSONP
with a |