FullCalendar Resource Day View Update

This is an update to the previous post named jQuery FullCalendar with Resource Day View. I added support for JSON feed URL for the resources option. You can now do this:

$('#calendar').fullCalendar({
  header: {
    left: 'prev,next today',
    center: 'title',
    right: 'resourceDay'
  },
  resources: 'resources.json',
  events: 'events.json',
  ...
});

Lastest code at github.

[Jan 29, 2013] There is an bug related update to this post.